diff options
author | Andrew Lewis <nerf@judo.za.org> | 2015-02-14 15:54:49 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2015-02-14 15:55:26 +0200 |
commit | 82fdd28d7a3ceedca3984f59cc1882410873543d (patch) | |
tree | f751d5effca14fb1743aebe803a34e1ae82eef8b /src/plugins | |
parent | bab9f14abf2c2201a51c3f9e5932403095926c30 (diff) | |
download | rspamd-82fdd28d7a3ceedca3984f59cc1882410873543d.tar.gz rspamd-82fdd28d7a3ceedca3984f59cc1882410873543d.zip |
rbl.lua: Fix mistake
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/rbl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 6950ab7cb..ab226f1cb 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -75,7 +75,7 @@ local function is_private_ip(rip) if rip == ipv6_loopback then return true end - for _r in pairs(private_ranges_v6) do + for _, r in pairs(private_ranges_v6) do if r[1] == rip:apply_mask(r[2]) then return true end |