diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-29 16:30:13 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-29 16:30:13 +0000 |
commit | 34ccdb348da78e4aea9cfa198299f77ce4c38a1f (patch) | |
tree | 2b0f2c4090a15167e3fc2ae0edbafd75cc8522e4 /package/hostapd/files/wpa_supplicant.sh | |
parent | e9c4d3d1f2dd990ebd9474ceda1c77b45678c6bd (diff) | |
download | upstream-34ccdb348da78e4aea9cfa198299f77ce4c38a1f.tar.gz upstream-34ccdb348da78e4aea9cfa198299f77ce4c38a1f.tar.bz2 upstream-34ccdb348da78e4aea9cfa198299f77ce4c38a1f.zip |
wpa_supplicant: make key_mgmt default to NONE
SVN-Revision: 31145
Diffstat (limited to 'package/hostapd/files/wpa_supplicant.sh')
-rw-r--r-- | package/hostapd/files/wpa_supplicant.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/package/hostapd/files/wpa_supplicant.sh b/package/hostapd/files/wpa_supplicant.sh index bbd928bfec..9c475a8fb1 100644 --- a/package/hostapd/files/wpa_supplicant.sh +++ b/package/hostapd/files/wpa_supplicant.sh @@ -35,12 +35,10 @@ wpa_supplicant_setup_vif() { } [ "$mode" = "adhoc" ] && modestr="mode=1" + key_mgmt='NONE' case "$enc" in - *none*) - key_mgmt='NONE' - ;; + *none*) ;; *wep*) - key_mgmt='NONE' config_get key "$vif" key key="${key:-1}" case "$key" in |