diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-11-24 14:44:26 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-11-24 14:44:26 +0000 |
commit | 54918933b03a19664a7901aca13c03073a7594ef (patch) | |
tree | cb6182c19519eaf24294582876d0183477085467 /src/plugins | |
parent | c2d682793739cb332728f477abdc3848338b8d0e (diff) | |
download | rspamd-54918933b03a19664a7901aca13c03073a7594ef.tar.gz rspamd-54918933b03a19664a7901aca13c03073a7594ef.zip |
Fix critical issue in adding fuzzy hashes
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/fuzzy_check.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index be1b556c8..cf58eb672 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -1110,10 +1110,11 @@ fuzzy_controller_io_callback (gint fd, short what, void *arg) else { msg_info_task ("cannot process fuzzy hash for message " "<%s>, " - "list %s:%d", + "list %s:%d, error: %d", session->task->message_id, symbol, - rep->flag); + rep->flag, + rep->value); if (*(session->err) == NULL) { g_set_error (session->err, g_quark_from_static_string ("fuzzy check"), |