From 4f402876fe595f0114245cb1dfa396c4f8214609 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 17 Aug 2007 21:31:22 +0000 Subject: [PATCH] 2007-08-17 Dan Williams * 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 --- ChangeLog | 7 +++++++ src/NetworkManagerAP.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a8749762b1..d45298b91e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-08-17 Dan Williams + + * 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 * src/nm-device-802-11-wireless.c diff --git a/src/NetworkManagerAP.c b/src/NetworkManagerAP.c index 24889fa9eb..a27b2f83c4 100644 --- a/src/NetworkManagerAP.c +++ b/src/NetworkManagerAP.c @@ -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;