comparison src/http/modules/ngx_http_proxy_module.c @ 936:2864303e0ce5

fix debug log
author Igor Sysoev <igor@sysoev.ru>
date Wed, 20 Dec 2006 19:38:06 +0000
parents a0310ac2814f
children 065b39794fff
comparison
equal deleted inserted replaced
935:db8e718447f1 936:2864303e0ce5
845 ngx_memcpy(u->headers_in.status_line.data, p->status_start, 845 ngx_memcpy(u->headers_in.status_line.data, p->status_start,
846 u->headers_in.status_line.len); 846 u->headers_in.status_line.len);
847 847
848 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 848 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
849 "http proxy status %ui \"%V\"", 849 "http proxy status %ui \"%V\"",
850 u->headers_in.status, &u->headers_in.status_line); 850 u->headers_in.status_n, &u->headers_in.status_line);
851 851
852 u->process_header = ngx_http_proxy_process_header; 852 u->process_header = ngx_http_proxy_process_header;
853 853
854 return ngx_http_proxy_process_header(r); 854 return ngx_http_proxy_process_header(r);
855 } 855 }