diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-07-19 14:21:14 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-07-19 14:21:14 +0400 |
commit | dec1abd6e4582b74b658db72a7071ce098d1c9e5 (patch) | |
tree | 3349035072faa222d6b62670db8320ce69fe4313 /src/protocol.c | |
parent | 2703710f1a44f6fcf96524d3a807e566069548c7 (diff) | |
parent | 4b4c9c35fe2347779d9636b71b4e1fb4456802f3 (diff) | |
download | rspamd-dec1abd6e4582b74b658db72a7071ce098d1c9e5.tar.gz rspamd-dec1abd6e4582b74b658db72a7071ce098d1c9e5.zip |
* Merge
Diffstat (limited to 'src/protocol.c')
-rw-r--r-- | src/protocol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol.c b/src/protocol.c index 7d26d6c80..f86f25677 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -800,7 +800,7 @@ write_check_reply (struct worker_task *task) cd.task = task; cd.log_buf = logbuf; - cd.log_offset = rspamd_snprintf (logbuf, sizeof (logbuf), "msg ok, id: <%s>, ", task->message_id); + cd.log_offset = rspamd_snprintf (logbuf, sizeof (logbuf), "id: <%s>, qid: <%s>, ", task->message_id, task->queue_id); cd.log_size = sizeof (logbuf); cd.alive = TRUE; @@ -886,7 +886,7 @@ write_process_reply (struct worker_task *task) cd.task = task; cd.log_buf = logbuf; - cd.log_offset = rspamd_snprintf (logbuf, sizeof (logbuf), "msg ok, id: <%s>, ", task->message_id); + cd.log_offset = rspamd_snprintf (logbuf, sizeof (logbuf), "id: <%s>, qid: <%s>, ", task->message_id, task->queue_id); cd.log_size = sizeof (logbuf); cd.alive = TRUE; |