diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-09-20 11:40:52 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-11-14 20:59:58 +0100 |
commit | 3e9b3d0ba91abd097b30590a01cbd099a5d89f58 (patch) | |
tree | 84cbe64d88758acd002a4bcf07204b3272934890 /package/network/services/hostapd/files/hostapd.sh | |
parent | eba68342f9d350008ade7c70cfa9c12d3ac6b504 (diff) | |
download | upstream-3e9b3d0ba91abd097b30590a01cbd099a5d89f58.tar.gz upstream-3e9b3d0ba91abd097b30590a01cbd099a5d89f58.tar.bz2 upstream-3e9b3d0ba91abd097b30590a01cbd099a5d89f58.zip |
hostapd: fix OWE settings in client mode
This changes fixes the generation of the wpa_supplicant client configuration
in WPA3 OWE client mode. Instead of incorrectly emitting key_mgmt=NONE, use
the proper key_mgmt=OWE setting instead.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 4209b28d23b8bf28575af5e8904194f49b81532e)
Diffstat (limited to 'package/network/services/hostapd/files/hostapd.sh')
-rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index 78fb736dd7..96cfc13a7d 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -795,6 +795,7 @@ wpa_supplicant_add_network() { none) ;; owe) hostapd_append_wpa_key_mgmt + key_mgmt="$wpa_key_mgmt" ;; wep) local wep_keyidx=0 |