diff options
author | Florian Eckert <fe@dev.tdt.de> | 2018-10-11 07:58:28 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2018-10-12 08:45:42 +0200 |
commit | d78be98cc4a2fcb799fe06bcdbacafe5afc39c76 (patch) | |
tree | 005ecbd922b2ea350df6573a3db87439662d28ca | |
parent | c9e3e73c8c7a64f37c0dc07d4c6a954e878edf93 (diff) |
luci-app-mwan3: fix typo
This has worked before because the interface variable is global. But
this is not nice. So this commit will fix this.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
-rw-r--r-- | applications/luci-app-mwan3/luasrc/controller/mwan3.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-mwan3/luasrc/controller/mwan3.lua b/applications/luci-app-mwan3/luasrc/controller/mwan3.lua index 13d47e0dc..35385912c 100644 --- a/applications/luci-app-mwan3/luasrc/controller/mwan3.lua +++ b/applications/luci-app-mwan3/luasrc/controller/mwan3.lua @@ -117,7 +117,7 @@ function diagnosticsData(interface, task) end end - function get_gateway(inteface) + function get_gateway(interface) local gateway = nil local dump = nil |