summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEneas U de Queiroz2024-02-03 19:33:14 +0000
committerEneas U de Queiroz2024-02-17 11:36:48 +0000
commit472312f83f886a0749672a634948726fda9c2401 (patch)
tree627fb7b8d551d93382a08f6c683cd37ffcc15710
parent6e2962d4c5487d60faf5554c4bfe1d5deaa3b4ad (diff)
downloadwigyori-472312f83f886a0749672a634948726fda9c2401.tar.gz
wifi-scripts: fix FILS AKM selection with EAP-192
Fix netifd hostapd.sh selection of FILS-SHA384 algorithm with eap-192. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
-rw-r--r--package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh b/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh
index 1a664abbf2..763702e76b 100644
--- a/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh
+++ b/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh
@@ -77,7 +77,7 @@ hostapd_append_wpa_key_mgmt() {
[ "$fils" -gt 0 ] && {
case "$auth_type" in
- eap-192)
+ eap192)
append wpa_key_mgmt FILS-SHA384
[ "${ieee80211r:-0}" -gt 0 ] && append wpa_key_mgmt FT-FILS-SHA384
;;