From 984714333ffa3e23ee0e0c48e1244feb631362b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Wed, 30 Sep 2015 13:08:05 +0200 Subject: supplicant: fix BSSs property type BSSs property is an array of object paths, not strings. --- src/supplicant-manager/nm-supplicant-interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/supplicant-manager/nm-supplicant-interface.c b/src/supplicant-manager/nm-supplicant-interface.c index 84253a695d..2e5d073fb1 100644 --- a/src/supplicant-manager/nm-supplicant-interface.c +++ b/src/supplicant-manager/nm-supplicant-interface.c @@ -578,7 +578,7 @@ props_changed_cb (GDBusProxy *proxy, set_state_from_string (self, s); } - if (g_variant_lookup (changed_properties, "BSSs", "^a&s", &array)) { + if (g_variant_lookup (changed_properties, "BSSs", "^a&o", &array)) { iter = array; while (*iter) handle_new_bss (self, *iter++); -- cgit v1.2.1