Make INTERWORKING_CONNECT more reliable in testing environment
Pick the most recently added BSS entry based on BSSID matching to avoid issues in testing environment where the SSID of the AP may have changed and both the old and new BSS is still present in the scan results. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
1074d42416
commit
e9ac44fcbc
1 changed files with 1 additions and 1 deletions
|
@ -7196,7 +7196,7 @@ static int ctrl_interworking_connect(struct wpa_supplicant *wpa_s, char *dst,
|
|||
return -1;
|
||||
}
|
||||
|
||||
bss = wpa_bss_get_bssid(wpa_s, bssid);
|
||||
bss = wpa_bss_get_bssid_latest(wpa_s, bssid);
|
||||
if (bss == NULL) {
|
||||
wpa_printf(MSG_DEBUG, "Could not find BSS " MACSTR,
|
||||
MAC2STR(bssid));
|
||||
|
|
Loading…
Reference in a new issue