summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKevin Daudt <kdaudt@alpinelinux.org>2023-01-28 19:25:41 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2023-01-30 19:23:16 +0000
commit6c9955efa34ebd415d7a490c893264427b249757 (patch)
treeb335afd0836afe3639dda510af0d0fd64e1e116d /Makefile
parentb527b1b2eea9a9ed11a11dcb8c50fb0a28d36120 (diff)
downloadalpine-conf-6c9955efa34ebd415d7a490c893264427b249757.zip
setup-interfaces: find essids when SSID List capability present
When a essid has the 'SSID List' extended capibility, the `find_essids` function will not return that ssid. That's because the `$1 ~ /SSID/` awk pattern will match that line. The ssid variable then is set to an empty value because there is no `:` (field separate) in that line, so `$2` is empty. The terminator of the statemachine then skips this essid, because it checks if the `ssid` variable is not empty. We can fix this by making sure the field ends with `SSID`, which is not the case with the `SSID List` line. Partial output of `iw dev wlan0 scan`: ``` Extended capabilities: * Extended Channel Switching * TFS * WNM-Sleep Mode * TIM Broadcast * BSS Transition * SSID List * Operating Mode Notification * 6 * Max Number Of MSDUs In A-MSDU is unlimited ``` Reported-by: invoked Fixes: #10546
Diffstat (limited to 'Makefile')
0 files changed, 0 insertions, 0 deletions