2007-08-17 Dan Williams <dcbw@redhat.com>

* src/NetworkManagerAP.c
		- (nm_ap_set_user_addresses): uppercase any BSSID passed in from the
			applet.  This ensures that the case between the seen-bssids and
			the bssids reported by the driver match.



git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2711 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2007-08-17 21:31:22 +00:00
parent 71a7f5bdb1
commit 4f402876fe
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2007-08-17 Dan Williams <dcbw@redhat.com>
* src/NetworkManagerAP.c
- (nm_ap_set_user_addresses): uppercase any BSSID passed in from the
applet. This ensures that the case between the seen-bssids and
the bssids reported by the driver match.
2007-08-17 Dan Williams <dcbw@redhat.com>
* src/nm-device-802-11-wireless.c

View file

@ -928,7 +928,7 @@ void nm_ap_set_user_addresses (NMAccessPoint *ap, GSList *list)
for (elt = list; elt; elt = g_slist_next (elt))
{
if (elt->data)
new = g_slist_append (new, g_strdup (elt->data));
new = g_slist_append (new, g_ascii_strup (elt->data, -1));
}
priv->user_addresses = new;