libs/core: use is6linklocal()
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 12 Feb 2011 19:10:17 +0000 (19:10 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 12 Feb 2011 19:10:17 +0000 (19:10 +0000)
libs/core/luasrc/model/network.lua

index 07bae9a..911d2a7 100644 (file)
@@ -605,11 +605,10 @@ function network.ip6addr(self)
        local ip6 = self:_ip("ip6addr", 6)
        if not ip6 then
                local ifc = ifs[self:ifname()]
-               local llr = ipc.IPv6("fe80::/10")
                if ifc and ifc.ip6addrs then
                        local a
                        for _, a in ipairs(ifc.ip6addrs) do
-                               if not llr:contains(a) then
+                               if not a:is6linklocal() then
                                        ip6 = a:string()
                                        break
                                end