supplicant: fix BSSs property type

BSSs property is an array of object paths, not strings.
This commit is contained in:
Jiří Klimeš 2015-09-30 13:08:05 +02:00
parent f7617511bb
commit 4b9b3d02c9

View file

@ -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++);