util.ip: Add missing netmask for 192.168/16 range (fixes #1343) 0.11
authorKim Alvefur <zash@zash.se>
Sun, 14 Apr 2019 02:06:20 +0200
branch0.11
changeset 9959 c74c89a96cbf
parent 9956 6402bc76f51a
child 9960 737483a4b2e6
child 9966 29bc3dff3419
util.ip: Add missing netmask for 192.168/16 range (fixes #1343)
util/ip.lua
--- 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