diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-12-20 19:38:06 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-12-20 19:38:06 +0000 |
commit | 4e08b9c17a06e41afda9be9c8b547b1aa3331d2d (patch) | |
tree | 76edd634edb09ca443a8499849f9867b862d1ca4 /src/http/modules/ngx_http_proxy_module.c | |
parent | 73dcdbf1a30968f84c97cc6a4165a9f5d823e8b2 (diff) | |
download | nginx-4e08b9c17a06e41afda9be9c8b547b1aa3331d2d.tar.gz nginx-4e08b9c17a06e41afda9be9c8b547b1aa3331d2d.zip |
fix debug log
Diffstat (limited to 'src/http/modules/ngx_http_proxy_module.c')
-rw-r--r-- | src/http/modules/ngx_http_proxy_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c index 2c26df901..9083ee82a 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -847,7 +847,7 @@ ngx_http_proxy_process_status_line(ngx_http_request_t *r) ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "http proxy status %ui \"%V\"", - u->headers_in.status, &u->headers_in.status_line); + u->headers_in.status_n, &u->headers_in.status_line); u->process_header = ngx_http_proxy_process_header; |