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
commit 06e6552c8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)