diff src/http/modules/ngx_http_not_modified_filter.c @ 195:8dee38ea9117

nginx-0.0.1-2003-11-25-23:44:56 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Nov 2003 20:44:56 +0000
parents 4db54fdbcbe7
children 70e1c7d2b83d
line wrap: on
line diff
--- a/src/http/modules/ngx_http_not_modified_filter.c
+++ b/src/http/modules/ngx_http_not_modified_filter.c
@@ -58,11 +58,13 @@ static int ngx_http_not_modified_header_
 
     if (ims != NGX_ERROR && ims == r->headers_out.last_modified_time) {
         r->headers_out.status = NGX_HTTP_NOT_MODIFIED;
+        r->headers_out.content_type->key.len = 0;
+        r->headers_out.content_type = NULL;
         r->headers_out.content_length_n = -1;
         r->headers_out.content_length = NULL;
-        r->headers_out.content_type->key.len = 0;
-        r->headers_out.content_type = NULL;
+#if 0
         r->headers_out.accept_ranges->key.len = 0;
+#endif
     }
 
     return ngx_http_next_header_filter(r);