diff src/mail/ngx_mail_handler.c @ 5600:957d734362ed

Fixed format specifier in logging of "c->number".
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 06 Mar 2014 18:25:59 +0400
parents 04e43d03e153
children b42e7c790b81
line wrap: on
line diff
--- a/src/mail/ngx_mail_handler.c
+++ b/src/mail/ngx_mail_handler.c
@@ -127,7 +127,7 @@ ngx_mail_init_connection(ngx_connection_
     c->data = s;
     s->connection = c;
 
-    ngx_log_error(NGX_LOG_INFO, c->log, 0, "*%ui client %V connected to %V",
+    ngx_log_error(NGX_LOG_INFO, c->log, 0, "*%uA client %V connected to %V",
                   c->number, &c->addr_text, s->addr_text);
 
     ctx = ngx_palloc(c->pool, sizeof(ngx_mail_log_ctx_t));