mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-06 17:18:02 +02:00
supplicant: fix BSSs property type
BSSs property is an array of object paths, not strings.
This commit is contained in:
parent
f7617511bb
commit
4b9b3d02c9
1 changed files with 1 additions and 1 deletions
|
|
@ -556,7 +556,7 @@ props_changed_cb (GDBusProxy *proxy,
|
||||||
set_state_from_string (self, s);
|
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;
|
iter = array;
|
||||||
while (*iter)
|
while (*iter)
|
||||||
handle_new_bss (self, *iter++);
|
handle_new_bss (self, *iter++);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue