util/ip.lua
branch0.11
changeset 9959 c74c89a96cbf
parent 8472 52d48cea1f60
child 10597 079b31c8dbf2
child 11653 aa119de5f6c7
--- a/util/ip.lua	Sat Apr 13 18:16:28 2019 +0200
+++ b/util/ip.lua	Sun Apr 14 02:06:20 2019 +0200
@@ -203,7 +203,7 @@
 function ip_methods:private()
 	local private = self.scope ~= 0xE;
 	if not private and self.proto == "IPv4" then
-		return match(self, rfc1918_8, 8) or match(self, rfc1918_12, 12) or match(self, rfc1918_16) or match(self, rfc6598, 10);
+		return match(self, rfc1918_8, 8) or match(self, rfc1918_12, 12) or match(self, rfc1918_16, 16) or match(self, rfc6598, 10);
 	end
 	return private;
 end