From: Juan Manuel M Date: Tue, 28 Jun 2016 14:15:23 +0000 (-0300) Subject: luci-proto-vpnc: further typo fixes X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=d4176328dfcd5ed696d91c12c53c06416f05dfd4 luci-proto-vpnc: further typo fixes --- diff --git a/protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua b/protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua index cb1dbcf5e..a47ce1588 100644 --- a/protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua +++ b/protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua @@ -29,18 +29,16 @@ ifname.template = "cbi/network_netlist" mtu = section:taboption("general", Value, "mtu", translate("MTU")) mtu.datatype = "uinteger" -section:taboption("general", Value, "authgroup", translate("AuthGroup")) - username = section:taboption("general", Value, "username", translate("Username")) password = section:taboption("general", Value, "password", translate("Password")) -hexpassword = section:taboption("general", Value, "hexpassword", translate("Obfuscated Password")) password.password = true +hexpassword = section:taboption("general", Value, "hexpassword", translate("Obfuscated Password")) hexpassword.password = true authroup = section:taboption("general", Value, "authgroup", translate("Auth Group")) passgroup = section:taboption("general", Value, "passgroup", translate("Group Password")) +passgroup.password = true hexpassgroup = section:taboption("general", Value, "hexpassgroup", translate("Obfuscated Group Password")) -password.passgroup = true -hexpassword.passgroup= true +hexpassword.password= true domain = section:taboption("general", Value, "domain", translate("NT Domain")) vendor = section:taboption("general", Value, "vendor", translate("Vendor")) @@ -50,11 +48,11 @@ dh_group:value("dh1") dh_group:value("dh5") pfs = section:taboption("general", ListValue, "pfs", translate("Perfect Forward Secrecy")) -dh_group:value("server") -dh_group:value("nopfs") -dh_group:value("dh1") -dh_group:value("dh2") -dh_group:value("dh5") +pfs:value("server") +pfs:value("nopfs") +pfs:value("dh1") +pfs:value("dh2") +pfs:value("dh5") natt_mode = section:taboption("general", ListValue, "natt_mode", translate("NAT-T Mode")) natt_mode:value("natt", translate("RFC3947 NAT-T mode"))