diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-09-24 14:02:50 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-09-24 14:02:50 +0000 |
commit | 753792e108677d4a444e89a54e94c3188235ddeb (patch) | |
tree | a7b87e35b500116c3cc4f23ed7c1a468046eab13 /src/http/modules/ngx_http_proxy_module.c | |
parent | e17cc987d32259f19145a260e9ee755c1cf21227 (diff) | |
download | nginx-753792e108677d4a444e89a54e94c3188235ddeb.tar.gz nginx-753792e108677d4a444e89a54e94c3188235ddeb.zip |
underscores_in_headers
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 6c0e28a34..d8392ee8d 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -1214,7 +1214,7 @@ ngx_http_proxy_process_header(ngx_http_request_t *r) for ( ;; ) { - rc = ngx_http_parse_header_line(r, &r->upstream->buffer); + rc = ngx_http_parse_header_line(r, &r->upstream->buffer, 1); if (rc == NGX_OK) { |