diff options
author | Kim Alvefur <zash@zash.se> | 2017-12-01 03:31:37 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-12-01 03:31:37 +0100 |
commit | 9be5c88b83b757139ba9e4405573b3cea407caae (patch) | |
tree | 38b1fc9f16a816c91df51e528a7796d88f16e84f /util/ip.lua | |
parent | 7d1d1be98eb57727276e1216a0f1d12e62a1546e (diff) | |
download | prosody-9be5c88b83b757139ba9e4405573b3cea407caae.tar.gz prosody-9be5c88b83b757139ba9e4405573b3cea407caae.zip |
util.ip: Do exact match for longer bit counts than available
Diffstat (limited to 'util/ip.lua')
-rw-r--r-- | util/ip.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ip.lua b/util/ip.lua index b65f6b6e..9575e499 100644 --- a/util/ip.lua +++ b/util/ip.lua @@ -228,7 +228,7 @@ local function parse_cidr(cidr) end function match(ipA, ipB, bits) - if not bits then + if not bits or bits >= 128 or ipB.proto == "IPv4" and bits >= 32 then return ipA == ipB; elseif bits < 1 then return true; |