mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
Interworking: Do not reconnect without "auto" parameter
When there was no credential match, but an enabled network block matched with a scan result, wpa_supplicant reconnected at the end of interworking_select command even if "auto" parameter was not used. Fix this by running the reconnect only if requested to automatically select a network. Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
7f996409e7
commit
2b95f57ba5
@ -1395,7 +1395,8 @@ static void interworking_select_network(struct wpa_supplicant *wpa_s)
|
||||
if (interworking_find_network_match(wpa_s)) {
|
||||
wpa_printf(MSG_DEBUG, "Interworking: Possible BSS "
|
||||
"match for enabled network configurations");
|
||||
interworking_reconnect(wpa_s);
|
||||
if (wpa_s->auto_select)
|
||||
interworking_reconnect(wpa_s);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user