2008-01-10 Dan Williams <dcbw@redhat.com>

* src/NetworkManagerAP.c
		- (foreach_property_cb): catch more hidden SSID formats



git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3234 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2008-01-11 02:59:21 +00:00
parent 4723a622cd
commit 417c9b7ea7
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2008-01-10 Dan Williams <dcbw@redhat.com>
* src/NetworkManagerAP.c
- (foreach_property_cb): catch more hidden SSID formats
2008-01-10 Dan Williams <dcbw@redhat.com>
Fix gnome.org #464215. Requires the kernel patch titled

View File

@@ -391,6 +391,9 @@ foreach_property_cb (gpointer key, gpointer value, gpointer user_data)
&& (memcmp (array->data, "<hidden>", 8) == 0))
return;
if (nm_utils_is_empty_ssid ((const guint8 *) array->data, len))
return;
ssid = g_byte_array_sized_new (len);
g_byte_array_append (ssid, (const guint8 *) array->data, len);
nm_ap_set_ssid (ap, ssid);