util.ip: Fix syntax error (while I search for my pre-commit hooks)

remotes/origin/0.11
Matthew Wild 15 years ago
parent 762989f7c9
commit c08e057bd2
  1. 2
      util/ip.lua

@ -65,7 +65,7 @@ local function v4scope(ip)
elseif fields[1] == 169 and fields[2] == 254 then
return 0x2;
-- Site-local unicast:
elseif (fields[1] == 10) or (fields[1] == 192 and fields[2] == 168) or (fields[1] == 172 and (fields[2] >= 16 and fields[2] < 32) then
elseif (fields[1] == 10) or (fields[1] == 192 and fields[2] == 168) or (fields[1] == 172 and (fields[2] >= 16 and fields[2] < 32)) then
return 0x5;
-- Global unicast:
else

Loading…
Cancel
Save