From: Manuel Munz Date: Mon, 21 Jan 2013 14:14:34 +0000 (+0000) Subject: applications/olsr: Make sure ipv6 addresses from are in the same format when we compa... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=07c2268d72daae5b7160d3f0ecc1eeeafc86601e;p=project%2Fluci.git applications/olsr: Make sure ipv6 addresses from are in the same format when we compare them --- diff --git a/applications/luci-olsr/luasrc/controller/olsr.lua b/applications/luci-olsr/luasrc/controller/olsr.lua index 0342bde49b..fc44820dc9 100644 --- a/applications/luci-olsr/luasrc/controller/olsr.lua +++ b/applications/luci-olsr/luasrc/controller/olsr.lua @@ -334,9 +334,10 @@ function fetch_txtinfo(otable) uci:foreach("network", "interface", function(s) local localip = string.gsub(fields[k], ' ', ''):upper() + localip = luci.ip.IPv6(localip):string() if s.ip6addr then s.ip6addr = luci.ip.IPv6(s.ip6addr):string() - local ip6addr = string.gsub(s.ip6addr, '\/.*', '') + local ip6addr = string.gsub(s.ip6addr, '\/.*', ''):upper() if ip6addr == localip then data[name][di]['Local Device'] = s['.name'] or s.interface end