diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2015-03-23 19:28:54 +0300 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2015-03-23 19:28:54 +0300 |
| commit | 3560af89996e1028cac5a8ee5cdaa9475c1117fc (patch) | |
| tree | ab3842b67192edcb69998608fd0ec837f25a8cd2 /src/http/ngx_http_request_body.c | |
| parent | 58eb93f791d27482519161a9bdef00acd9b33298 (diff) | |
| download | nginx-3560af89996e1028cac5a8ee5cdaa9475c1117fc.tar.gz nginx-3560af89996e1028cac5a8ee5cdaa9475c1117fc.tar.bz2 | |
Format specifier fixed for file size of buffers.
Diffstat (limited to 'src/http/ngx_http_request_body.c')
| -rw-r--r-- | src/http/ngx_http_request_body.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/ngx_http_request_body.c b/src/http/ngx_http_request_body.c index bbf16fd25..0a07dfa18 100644 --- a/src/http/ngx_http_request_body.c +++ b/src/http/ngx_http_request_body.c @@ -936,7 +936,7 @@ ngx_http_request_body_chunked_filter(ngx_http_request_t *r, ngx_chain_t *in) ngx_log_debug7(NGX_LOG_DEBUG_EVENT, r->connection->log, 0, "http body chunked buf " - "t:%d f:%d %p, pos %p, size: %z file: %O, size: %z", + "t:%d f:%d %p, pos %p, size: %z file: %O, size: %O", cl->buf->temporary, cl->buf->in_file, cl->buf->start, cl->buf->pos, cl->buf->last - cl->buf->pos, @@ -1068,7 +1068,7 @@ ngx_http_request_body_save_filter(ngx_http_request_t *r, ngx_chain_t *in) for (cl = rb->bufs; cl; cl = cl->next) { ngx_log_debug7(NGX_LOG_DEBUG_EVENT, r->connection->log, 0, "http body old buf t:%d f:%d %p, pos %p, size: %z " - "file: %O, size: %z", + "file: %O, size: %O", cl->buf->temporary, cl->buf->in_file, cl->buf->start, cl->buf->pos, cl->buf->last - cl->buf->pos, @@ -1079,7 +1079,7 @@ ngx_http_request_body_save_filter(ngx_http_request_t *r, ngx_chain_t *in) for (cl = in; cl; cl = cl->next) { ngx_log_debug7(NGX_LOG_DEBUG_EVENT, r->connection->log, 0, "http body new buf t:%d f:%d %p, pos %p, size: %z " - "file: %O, size: %z", + "file: %O, size: %O", cl->buf->temporary, cl->buf->in_file, cl->buf->start, cl->buf->pos, cl->buf->last - cl->buf->pos, |
