From d4b1e5f58b999ad9c36d150ceb4493662f0188dc Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Wed, 21 Mar 2012 07:35:43 +0000 Subject: If we inserted "Last-Modified" in r->headers_out.headers, don't forget to set the r->headers_out.last_modified pointer to it. --- src/http/modules/ngx_http_headers_filter_module.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/http/modules') diff --git a/src/http/modules/ngx_http_headers_filter_module.c b/src/http/modules/ngx_http_headers_filter_module.c index d061ffff3..938993434 100644 --- a/src/http/modules/ngx_http_headers_filter_module.c +++ b/src/http/modules/ngx_http_headers_filter_module.c @@ -385,6 +385,8 @@ ngx_http_set_last_modified(ngx_http_request_t *r, ngx_http_header_val_t *hv, return NGX_ERROR; } + *old = h; + } else { h = *old; -- cgit