[openwrt/openwrt] hostapd: fix FILS AKM selection with EAP-192

LEDE Commits lede-commits at lists.infradead.org
Sat Feb 17 08:47:35 PST 2024


ansuel pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/31ae9728ffca5d4ff8bf6b56b8e7f55e4ce749eb

commit 31ae9728ffca5d4ff8bf6b56b8e7f55e4ce749eb
Author: Eneas U de Queiroz <cotequeiroz at gmail.com>
AuthorDate: Sat Feb 3 16:33:14 2024 -0300

    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 at gmail.com>
    (cherry picked from commit 472312f83f886a0749672a634948726fda9c2401)
---
 package/network/services/hostapd/files/hostapd.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 			;;




More information about the lede-commits mailing list