luci-app-mwan3: rename variable in globalsconfig.lua
authorFlorian Eckert <fe@dev.tdt.de>
Tue, 16 Oct 2018 07:34:28 +0000 (09:34 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Wed, 14 Nov 2018 08:15:46 +0000 (09:15 +0100)
Name variables as the options name in uci.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua

index dba1998fd4d01cf865c4400b2b529db33405f58f..f8dd741fb7665aea787c2c6bb540c7581b9695b1 100644 (file)
@@ -3,23 +3,24 @@
 
 local net = require "luci.model.network".init()
 
-local s, m, n, mask
+local s, m, local_source, mask
 
 m = Map("mwan3", translate("MWAN - Globals"))
 
 s = m:section(NamedSection, "globals", "globals", nil)
-n = s:option(ListValue, "local_source",
+
+local_source = s:option(ListValue, "local_source",
        translate("Local source interface"),
        translate("Use the IP address of this interface as source IP " ..
        "address for traffic initiated by the router itself"))
-n:value("none")
-n.default = "none"
+local_source:value("none")
+local_source.default = "none"
 for _, net in ipairs(net:get_networks()) do
        if net:name() ~= "loopback" then
-               n:value(net:name())
+               local_source:value(net:name())
        end
 end
-n.rmempty = false
+local_source.rmempty = false
 
 mask = s:option(
        Value,