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:
@@ -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>
|
2008-01-10 Dan Williams <dcbw@redhat.com>
|
||||||
|
|
||||||
Fix gnome.org #464215. Requires the kernel patch titled
|
Fix gnome.org #464215. Requires the kernel patch titled
|
||||||
|
@@ -391,6 +391,9 @@ foreach_property_cb (gpointer key, gpointer value, gpointer user_data)
|
|||||||
&& (memcmp (array->data, "<hidden>", 8) == 0))
|
&& (memcmp (array->data, "<hidden>", 8) == 0))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (nm_utils_is_empty_ssid ((const guint8 *) array->data, len))
|
||||||
|
return;
|
||||||
|
|
||||||
ssid = g_byte_array_sized_new (len);
|
ssid = g_byte_array_sized_new (len);
|
||||||
g_byte_array_append (ssid, (const guint8 *) array->data, len);
|
g_byte_array_append (ssid, (const guint8 *) array->data, len);
|
||||||
nm_ap_set_ssid (ap, ssid);
|
nm_ap_set_ssid (ap, ssid);
|
||||||
|
Reference in New Issue
Block a user