diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-10-17 16:23:45 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-10-17 16:23:45 +0100 |
commit | ec65afa2eff32bf4ea72502a7d4d46d6340e779b (patch) | |
tree | db5d64819aa66856a7b718f60b7a6afa518df3fb /src/plugins/lua/replies.lua | |
parent | 5ba9ba75fc19c62ca36198b8e1998412ecebdc07 (diff) | |
download | rspamd-ec65afa2eff32bf4ea72502a7d4d46d6340e779b.tar.gz rspamd-ec65afa2eff32bf4ea72502a7d4d46d6340e779b.zip |
[Rework] Adopt plugins
Diffstat (limited to 'src/plugins/lua/replies.lua')
-rw-r--r-- | src/plugins/lua/replies.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lua/replies.lua b/src/plugins/lua/replies.lua index 236cb5626..901595295 100644 --- a/src/plugins/lua/replies.lua +++ b/src/plugins/lua/replies.lua @@ -42,7 +42,7 @@ local function make_key(goop) end local function replies_check(task) - local function redis_get_cb(task, err, data) + local function redis_get_cb(err, data) if err ~= nil then rspamd_logger.errx('redis_get_cb received error: %1', err) return @@ -83,7 +83,7 @@ local function replies_check(task) end local function replies_set(task) - local function redis_set_cb(task, err, data) + local function redis_set_cb(err, data) if err ~=nil then rspamd_logger.errx('redis_set_cb received error: %1', err) end |