diff options
| author | Christian Marangi <ansuelsmth@gmail.com> | 2023-11-08 16:44:38 +0100 |
|---|---|---|
| committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-11-09 15:58:34 +0100 |
| commit | 1070fbce6e496da2dacf17c6e842a4369c4be71b (patch) | |
| tree | 7e030b0de6c54052cd7af3098bc54eeeb79c5f52 /package/kernel | |
| parent | eea264feadcf01682fbe57bec8e251e841d309b3 (diff) | |
| download | upstream-1070fbce6e496da2dacf17c6e842a4369c4be71b.tar.gz upstream-1070fbce6e496da2dacf17c6e842a4369c4be71b.tar.bz2 upstream-1070fbce6e496da2dacf17c6e842a4369c4be71b.zip | |
mac80211: fix not set noscan option for wpa_supplicant
noscan option was changed to hostapd_noscan but the entry in
wpa_supplicant was never updated resulting in the noscan option actually
never set.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'package/kernel')
| -rw-r--r-- | package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh index 860609305f4..1bf4db6e5f0 100644 --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh @@ -940,7 +940,7 @@ mac80211_setup_supplicant() { if [ "$mode" = "sta" ]; then wpa_supplicant_add_network "$ifname" else - wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan" + wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$hostapd_noscan" fi wpa_supplicant_add_interface "$ifname" "$mode" |
