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.
This commit is contained in:
Andrew Zaborowski 2020-10-23 18:34:49 +02:00 committed by Thomas Haller
parent 61e516bc20
commit ca820d5f65
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -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;
}