libs/core: fix network is_empty() check for wifi-ifaces which are part of multiple networks

This commit is contained in:
Jo-Philipp Wich 2012-06-26 21:49:24 +00:00
parent d52859b37e
commit 61883f2c3f

View file

@ -782,9 +782,12 @@ function protocol.is_empty(self)
_uci_real:foreach("wireless", "wifi-iface",
function(s)
if s.network == self.sid then
rv = false
return false
local n
for n in utl.imatch(s.network) do
if n == self.sid then
rv = false
return false
end
end
end)