Merge pull request #3434 from tano-systems/luci-base-network-fix

luci-compat: network.lua: fix typo
This commit is contained in:
Hannu Nyman
2019-12-27 12:13:15 +02:00
committed by GitHub

View File

@@ -1482,7 +1482,7 @@ end
function interface.is_bridgeport(self)
return self.dev and self.dev.bridge and
(self.dev.bridge.name != self:name()) and true or false
(self.dev.bridge.name ~= self:name()) and true or false
end
function interface.tx_bytes(self)