From ca820d5f65b7280542f340a99617fd2b472269d8 Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Fri, 23 Oct 2020 18:34:49 +0200 Subject: [PATCH] iwd: Never lock to BSSID in complete_connection The AP BSSIDs created by the iwd backend are made up so never lock the connections to them. It probably wouldn't matter as long as the iwd backend is used but the fake BSSID could stay in the connection properties even if the user switches to wpa_supplicant. --- src/devices/wifi/nm-device-iwd.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/devices/wifi/nm-device-iwd.c b/src/devices/wifi/nm-device-iwd.c index e766238121..30adaaf045 100644 --- a/src/devices/wifi/nm-device-iwd.c +++ b/src/devices/wifi/nm-device-iwd.c @@ -944,10 +944,7 @@ complete_connection(NMDevice * device, } if (ap) { - if (!nm_wifi_ap_complete_connection(ap, - connection, - nm_wifi_utils_is_manf_default_ssid(ssid), - error)) + if (!nm_wifi_ap_complete_connection(ap, connection, FALSE, error)) return FALSE; }