From: Eneas U de Queiroz Date: Sat, 3 Feb 2024 19:33:14 +0000 (-0300) Subject: hostapd: fix FILS AKM selection with EAP-192 X-Git-Tag: v6.1-20240701~60 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9f782da779f26c8da9370b215d92f18ab90a59ac;p=librecmc%2Flibrecmc.git 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 (cherry picked from commit 472312f83f886a0749672a634948726fda9c2401) --- diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index 9ca44a855d..f1ad08db6f 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 ;;