From: Jo-Philipp Wich Date: Tue, 26 Apr 2016 19:02:51 +0000 (+0200) Subject: luci-base: fix syntax error in luci.model.network X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=313e325ab14856c4ae0c5690433b0d20d7afd4e6 luci-base: fix syntax error in luci.model.network Signed-off-by: Jo-Philipp Wich --- 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