summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2016-04-26 21:02:51 +0200
committerJo-Philipp Wich <jo@mein.io>2016-04-26 21:02:51 +0200
commit313e325ab14856c4ae0c5690433b0d20d7afd4e6 (patch)
treed69a4592e7d45227eb8cea3b858fb46d4e2f7ed4 /modules/luci-base
parent182506113d877cf5b60d4c82bfd54af785d63598 (diff)
luci-base: fix syntax error in luci.model.network
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base')
-rw-r--r--modules/luci-base/luasrc/model/network.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua
index 576b2ef58..9cd7c87c0 100644
--- a/modules/luci-base/luasrc/model/network.lua
+++ b/modules/luci-base/luasrc/model/network.lua
@@ -508,7 +508,7 @@ function get_interfaces(self)
end)
for iface in utl.kspairs(_interfaces) do
- if not (seen[iface] or (_iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then
+ if not (seen[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then
nfs[iface] = interface(iface)
end
end