diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-04-21 17:10:31 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-04-21 17:10:31 +0200 |
commit | cae47edfb5950a877ea94aefd716fbcbb1e5c3a1 (patch) | |
tree | 580d4259d2c028525c364fac120f3421c267f301 | |
parent | 9286495fc2021705aa1d701383ac6a3be873498e (diff) | |
download | rspamd-cae47edfb5950a877ea94aefd716fbcbb1e5c3a1.tar.gz rspamd-cae47edfb5950a877ea94aefd716fbcbb1e5c3a1.zip |
[Minor] Silence warning
-rw-r--r-- | src/plugins/lua/hfilter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/hfilter.lua b/src/plugins/lua/hfilter.lua index 54855ec8a..0e06f683c 100644 --- a/src/plugins/lua/hfilter.lua +++ b/src/plugins/lua/hfilter.lua @@ -417,7 +417,7 @@ local function hfilter(task) -- Regexp check HELO (checks_hello_bareip) local find_bareip = false if not find_badip then - local values = checks_hello_bareip_map:get_key(helo) + values = checks_hello_bareip_map:get_key(helo) if values then task:insert_result('HFILTER_HELO_BAREIP', 1.0, helo, values) find_bareip = true |