diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-12-22 16:41:34 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-12-22 16:41:34 +0000 |
commit | c7c0d610cf5f115976673206f924572b124eec0f (patch) | |
tree | 0c5d59c71922f9d6636c1641639d1db4c0ed200f /src/http/modules/ngx_http_proxy_module.c | |
parent | fb0c73b08d869dfc396fd04b925512d3bda71a21 (diff) | |
download | nginx-c7c0d610cf5f115976673206f924572b124eec0f.tar.gz nginx-c7c0d610cf5f115976673206f924572b124eec0f.zip |
fix the "If-None-Match" header name
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 3e0588f90..1fdc279ec 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -537,7 +537,7 @@ static ngx_keyval_t ngx_http_proxy_cache_headers[] = { { ngx_string("Expect"), ngx_string("") }, { ngx_string("If-Modified-Since"), ngx_string("") }, { ngx_string("If-Unmodified-Since"), ngx_string("") }, - { ngx_string("If-Match-None"), ngx_string("") }, + { ngx_string("If-None-Match"), ngx_string("") }, { ngx_string("If-Match"), ngx_string("") }, { ngx_string("Range"), ngx_string("") }, { ngx_string("If-Range"), ngx_string("") }, |