diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-08-29 15:32:49 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-08-29 15:32:49 +0000 |
commit | 4f62b7389870ac7173b52d643a7241b28e9c92e5 (patch) | |
tree | 623c1f7c820d174bb7e83891b1108cfa8e667033 /src/http/ngx_http_request.c | |
parent | 7f789168efa15810264c1990ef867f980e5039d3 (diff) | |
download | nginx-4f62b7389870ac7173b52d643a7241b28e9c92e5.tar.gz nginx-4f62b7389870ac7173b52d643a7241b28e9c92e5.zip |
If-Modified-Since should be unique header line
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 87b6017a6..f3d8f4841 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -75,7 +75,7 @@ ngx_http_header_t ngx_http_headers_in[] = { { ngx_string("If-Modified-Since"), offsetof(ngx_http_headers_in_t, if_modified_since), - ngx_http_process_header_line }, + ngx_http_process_unique_header_line }, { ngx_string("User-Agent"), offsetof(ngx_http_headers_in_t, user_agent), ngx_http_process_header_line }, |