summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEneas U de Queiroz2024-02-03 19:33:14 +0000
committerEneas U de Queiroz2024-02-17 14:41:01 +0000
commit31ae9728ffca5d4ff8bf6b56b8e7f55e4ce749eb (patch)
tree181c64a31db7218d5a5cdc0612653bc1ff8369b9
parenteda5930d431545bbdcd808657d50de999062fb81 (diff)
downloadopenwrt-31ae9728ffca5d4ff8bf6b56b8e7f55e4ce749eb.tar.gz
hostapd: 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> (cherry picked from commit 472312f83f886a0749672a634948726fda9c2401)
-rw-r--r--package/network/services/hostapd/files/hostapd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh
index 271c1f7bec..5d588b3bde 100644
--- a/package/network/services/hostapd/files/hostapd.sh
+++ b/package/network/services/hostapd/files/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
;;