From 4b9b3d02c9e749d4e9ed99ee47ebcd7fc1b27d85 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: [PATCH] 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 08b850a322..7d33db465b 100644 --- a/src/supplicant-manager/nm-supplicant-interface.c +++ b/src/supplicant-manager/nm-supplicant-interface.c @@ -556,7 +556,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++);