1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-24 07:40:52 +00:00

wpa: Address CTRL-EVENT-SCAN-FAILED

5fcdc19a81 didn't fully resolve the issue. There remains a report
that an ifconfig wlan0 up by itself is insufficient. Ifconfig down
must precede it.

Reported by:	Filipe da Silva Santos <contact _ shiori_com_br>
Fixes:		5fcdc19a81
MFC after:	3 days
This commit is contained in:
Cy Schubert 2021-09-08 17:20:52 -07:00
parent 58a7bf124c
commit d06d7eb091

View File

@ -29,6 +29,8 @@ is_ndis_interface()
}
wpa_poststart() {
ifconfig ${ifn} down
sleep 2
ifconfig ${ifn} up
}