From: Vsevolod Stakhov Date: Mon, 20 Sep 2010 16:31:47 +0000 (+0400) Subject: * Fix stupid error when all checks can be done in a single pass X-Git-Tag: 0.3.2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0287117599edd2cb87822b2cac50b14a58dc3d9a;p=rspamd.git * Fix stupid error when all checks can be done in a single pass --- diff --git a/src/worker.c b/src/worker.c index 427609458..aa8e40cc0 100644 --- a/src/worker.c +++ b/src/worker.c @@ -360,6 +360,7 @@ read_socket (f_str_t * in, void *arg) else { process_statfiles (task); lua_call_post_filters (task); + task->state = WRITE_REPLY; return write_socket (task); } break;