util.ip: Convert the correct IP to IPv6-mapped for comparison (fixes traceback, possibly invalid result)

This commit is contained in:
Kim Alvefur 2017-12-09 20:53:37 +01:00
parent d6405de8e2
commit 9448c27667

View file

@ -238,7 +238,7 @@ function match(ipA, ipB, bits)
if ipA.proto == "IPv4" then
ipA = ipA.toV4mapped;
elseif ipB.proto == "IPv4" then
ipB = ipA.toV4mapped;
ipB = ipB.toV4mapped;
bits = bits + (128 - 32);
end
end