From: Nicolas Thill <nico@openwrt.org>
Date: Sun, 12 Jun 2005 14:12:11 +0000 (+0000)
Subject: Do not always activate WPA
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=d8432f55d0c9e8284a74fc72a72980b92c155c2e;p=openwrt%2Fstaging%2Fdedeckeh.git

Do not always activate WPA

SVN-Revision: 1218
---

diff --git a/openwrt/package/wificonf/wificonf.c b/openwrt/package/wificonf/wificonf.c
index eb09769e46..f96ef1524b 100644
--- a/openwrt/package/wificonf/wificonf.c
+++ b/openwrt/package/wificonf/wificonf.c
@@ -160,6 +160,8 @@ void setup_bcom(int skfd, char *ifname)
 		val = AES_ENABLED;
 	else if (nvram_match(wl_var("crypto"), "tkip+aes"))
 		val = TKIP_ENABLED | AES_ENABLED;
+	else
+		val = 0;
 	bcom_ioctl(skfd, ifname, WLC_SET_WSEC, &val, sizeof(val));
 
 	if (val && nvram_get(wl_var("wpa_psk"))) {