comparison src/mail/ngx_mail_auth_http_module.c @ 6001:add12ee1d01c

Style: use %*s format, as in 68d21fd1dc64.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 04 Mar 2015 08:05:38 +0300
parents 6a7c6973d6fc
children f01ab2dbcfdc
comparison
equal deleted inserted replaced
6000:93fee708f168 6001:add12ee1d01c
1392 1392
1393 /* add "\r\n" at the header end */ 1393 /* add "\r\n" at the header end */
1394 *b->last++ = CR; *b->last++ = LF; 1394 *b->last++ = CR; *b->last++ = LF;
1395 1395
1396 #if (NGX_DEBUG_MAIL_PASSWD) 1396 #if (NGX_DEBUG_MAIL_PASSWD)
1397 { 1397 ngx_log_debug2(NGX_LOG_DEBUG_MAIL, s->connection->log, 0,
1398 ngx_str_t l; 1398 "mail auth http header:%N\"%*s\"",
1399 1399 (size_t) (b->last - b->pos), b->pos);
1400 l.len = b->last - b->pos;
1401 l.data = b->pos;
1402 ngx_log_debug1(NGX_LOG_DEBUG_MAIL, s->connection->log, 0,
1403 "mail auth http header:%N\"%V\"", &l);
1404 }
1405 #endif 1400 #endif
1406 1401
1407 return b; 1402 return b;
1408 } 1403 }
1409 1404