From: Eneas U de Queiroz Date: Sat, 3 Feb 2024 19:33:14 +0000 (-0300) Subject: wifi-scripts: fix FILS AKM selection with EAP-192 X-Git-Tag: v24.10.0-rc1~2939 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14653%2Fhead;p=thirdparty%2Fopenwrt.git 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 --- 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 1a664abbf2f..763702e76b1 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 ;;