summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Zaborowski <andrew.zaborowski@intel.com>2020-10-23 18:34:49 +0200
committerThomas Haller <thaller@redhat.com>2020-11-12 15:35:56 +0100
commitc83472a269038bb6ce44b780f5152f9910111dd4 (patch)
tree4938c8cde24beda367f34b1143b2a310a2d32e78
parent89ce25b212a6e828290bc0d13d5833162fffbd76 (diff)
downloadNetworkManager-c83472a269038bb6ce44b780f5152f9910111dd4.tar.gz
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.
-rw-r--r--src/devices/wifi/nm-device-iwd.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/wifi/nm-device-iwd.c b/src/devices/wifi/nm-device-iwd.c
index 7c1682bf82..50dd892427 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;
}