diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-29 16:30:13 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-29 16:30:13 +0000 |
commit | 2010214af9648411dbeffa9a462dd2a80b349651 (patch) | |
tree | 441253b66a4f958de9dc7e43b1d02854cdeb3d0e /package | |
parent | 8600b97ee65ecd97461508bf0e67de06707a2e59 (diff) |
wpa_supplicant: make key_mgmt default to NONE
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31145 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-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 |