modules/admin-full: fix wep key handling in sta mode connection wizzard
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 24 Mar 2011 20:56:23 +0000 (20:56 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 24 Mar 2011 20:56:23 +0000 (20:56 +0000)
modules/admin-full/luasrc/model/cbi/admin_network/wifi_add.lua

index 5dd6393..1549568 100644 (file)
@@ -143,7 +143,8 @@ function newnet.parse(self, section)
 
                if m.hidden.wep == "1" then
                        wconf.encryption = "wep"
-                       wconf.key        = key and key:formvalue(section) or ""
+                       wconf.key        = "1"
+                       wconf.key1       = key and key:formvalue(section) or ""
                elseif (tonumber(m.hidden.wpa_version) or 0) > 0 then
                        wconf.encryption = (tonumber(m.hidden.wpa_version) or 0) >= 2 and "psk2" or "psk"
                        wconf.key        = key and key:formvalue(section) or ""