mesh: Skip fast-association when using connect_without_scan
The mesh group addition was designed to use wpa_s->connect_without_scan to skip a scan. That path was skipped if wpa_supplicant_fast_associate() allowed previous scan results to be used. This could result in undesired double-initialization attempt for the mesh interface. Avoid this by not using wpa_supplicant_fast_associate() when wpa_s->connect_without_scan is set. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
608b0ff52a
commit
e4a35f07d9
1 changed files with 2 additions and 1 deletions
|
@ -2354,7 +2354,8 @@ void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
|
|||
wpa_s->disconnected = 0;
|
||||
wpa_s->reassociate = 1;
|
||||
|
||||
if (wpa_supplicant_fast_associate(wpa_s) != 1)
|
||||
if (wpa_s->connect_without_scan ||
|
||||
wpa_supplicant_fast_associate(wpa_s) != 1)
|
||||
wpa_supplicant_req_scan(wpa_s, 0, disconnected ? 100000 : 0);
|
||||
|
||||
if (ssid)
|
||||
|
|
Loading…
Reference in a new issue