mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 01:11:52 +02:00
fix aes+tkip nvram setting for wl0_crypto
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1975 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e4c5ba4c17
commit
e882dc816d
@ -325,7 +325,7 @@ void setup_bcom(int skfd, char *ifname)
|
||||
val = TKIP_ENABLED;
|
||||
else if (nvram_match(wl_var("crypto"), "aes"))
|
||||
val = AES_ENABLED;
|
||||
else if (nvram_match(wl_var("crypto"), "tkip+aes"))
|
||||
else if (nvram_match(wl_var("crypto"), "tkip+aes") || nvram_match(wl_var("crypto"), "aes+tkip"))
|
||||
val = TKIP_ENABLED | AES_ENABLED;
|
||||
else
|
||||
val = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user