mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-17 18:34:03 -05:00
wpa_supplicant: Save prev_sched_ssid only if needed
If the whole ssid list was scanned, don't save the prev scheduled ssid since we are going to start from beginning. Thos avoids starting sched scan from prev_sched_ssid after scanning the full list, in case of adding a network to ssid during scheduled scan. Signed-hostap: David Spinadel <david.spinadel@intel.com>
This commit is contained in:
parent
a09fc1ccf8
commit
7ed52f678b
@ -1124,6 +1124,10 @@ scan:
|
||||
}
|
||||
}
|
||||
|
||||
/* If there is no more ssids, start next time from the beginning */
|
||||
if (!ssid)
|
||||
wpa_s->prev_sched_ssid = NULL;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user