From: Vsevolod Stakhov Date: Fri, 17 Sep 2010 12:46:59 +0000 (+0400) Subject: * Fix misprint (reported by az) X-Git-Tag: 0.3.2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76842317619ced55244670cb7e9b14de7951c5ad;p=thirdparty%2Frspamd.git * Fix misprint (reported by az) --- diff --git a/src/protocol.c b/src/protocol.c index 934dabe053..d3afe61946 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -283,7 +283,7 @@ parse_header (struct worker_task *task, f_str_t * line) if (task->content_length == 0) { tmp = memory_pool_fstrdup (task->task_pool, line); task->content_length = strtoul (tmp, &err, 10); - debug_task ("read Content-Length header, value: %lu", (unsigned long int)task->content_length); + debug_task ("read Content-Length header, value: %ul", (unsigned long int)task->content_length); } } else {