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/ngx_http_request.c | |
parent | e17cc987d32259f19145a260e9ee755c1cf21227 (diff) | |
download | nginx-753792e108677d4a444e89a54e94c3188235ddeb.tar.gz nginx-753792e108677d4a444e89a54e94c3188235ddeb.zip |
underscores_in_headers
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index ae3bb03d5..3970852ea 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -902,7 +902,8 @@ ngx_http_process_request_headers(ngx_event_t *rev) } } - rc = ngx_http_parse_header_line(r, r->header_in); + rc = ngx_http_parse_header_line(r, r->header_in, + cscf->underscores_in_headers); if (rc == NGX_OK) { |