mirror of
https://github.com/nginx/nginx.git
synced 2024-12-03 13:09:01 +08:00
Style: use %*s format, as in 68d21fd1dc64.
This commit is contained in:
parent
a9a01e0938
commit
466b3b9250
@ -1394,14 +1394,9 @@ ngx_mail_auth_http_create_request(ngx_mail_session_t *s, ngx_pool_t *pool,
|
|||||||
*b->last++ = CR; *b->last++ = LF;
|
*b->last++ = CR; *b->last++ = LF;
|
||||||
|
|
||||||
#if (NGX_DEBUG_MAIL_PASSWD)
|
#if (NGX_DEBUG_MAIL_PASSWD)
|
||||||
{
|
ngx_log_debug2(NGX_LOG_DEBUG_MAIL, s->connection->log, 0,
|
||||||
ngx_str_t l;
|
"mail auth http header:%N\"%*s\"",
|
||||||
|
(size_t) (b->last - b->pos), b->pos);
|
||||||
l.len = b->last - b->pos;
|
|
||||||
l.data = b->pos;
|
|
||||||
ngx_log_debug1(NGX_LOG_DEBUG_MAIL, s->connection->log, 0,
|
|
||||||
"mail auth http header:%N\"%V\"", &l);
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return b;
|
return b;
|
||||||
|
Loading…
Reference in New Issue
Block a user