From 34ccdb348da78e4aea9cfa198299f77ce4c38a1f Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Thu, 29 Mar 2012 16:30:13 +0000
Subject: [PATCH] wpa_supplicant: make key_mgmt default to NONE

SVN-Revision: 31145
---
 package/hostapd/files/wpa_supplicant.sh | 6 ++----
 1 file 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
-- 
GitLab