util/ip.lua
changeset 4433 f0e72fbe4d6a
parent 4432 cbc3224ed3c2
child 5552 40e7a6cf15ff
--- a/util/ip.lua	Wed Nov 30 17:20:16 2011 +0000
+++ b/util/ip.lua	Wed Nov 30 19:37:13 2011 +0000
@@ -65,7 +65,7 @@
 	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