diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-16 00:59:07 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-16 00:59:07 +0000 |
commit | 77f3c9257ea2e61676675fed7500cd86dea68f7d (patch) | |
tree | 4b2b12a09e4fa77d8649205d2f3d94b8bd85aeb7 /src/plugins | |
parent | 455dd6e0a7eb8aadc77acc4c37d20313bd42ae90 (diff) | |
download | rspamd-77f3c9257ea2e61676675fed7500cd86dea68f7d.tar.gz rspamd-77f3c9257ea2e61676675fed7500cd86dea68f7d.zip |
Do not treat 'not found' as error in fuzzy
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/fuzzy_check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index cdc4ef508..f5084c25a 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -1151,13 +1151,14 @@ fuzzy_check_io_callback (gint fd, short what, void *arg) symbol, rep->flag); } - else { + else if (rep->value != 0) { msg_info_task ( "fuzzy check error for %s(%d): unknown error (%d)", symbol, rep->flag, rep->value); } + /* Not found */ ret = return_finished; } |