comparison src/http/modules/ngx_http_not_modified_filter_module.c @ 346:05693816539c NGINX_0_6_17

nginx 0.6.17 *) Feature: the "If-Range" request header line support. Thanks to Alexander V. Inyukhin. *) Bugfix: URL double escaping in a redirect of the "msie_refresh" directive; bug appeared in 0.6.4. *) Bugfix: the "autoindex" directive did not work with the "alias /" directive. *) Bugfix: a segmentation fault might occur in worker process if subrequests were used. *) Bugfix: the big responses may be transferred truncated if SSL and gzip were used. *) Bugfix: the $status variable was equal to 0 if a proxied server returned response in HTTP/0.9 version.
author Igor Sysoev <http://sysoev.ru>
date Thu, 15 Nov 2007 00:00:00 +0300
parents 38e7b94d63ac
children 09b703ae3ba5
comparison
equal deleted inserted replaced
345:4279bc4cdec6 346:05693816539c
68 68
69 /* 69 /*
70 * I think that the equality of the dates is correcter 70 * I think that the equality of the dates is correcter
71 */ 71 */
72 72
73 if (ims != NGX_ERROR && ims == r->headers_out.last_modified_time) { 73 if (ims == r->headers_out.last_modified_time) {
74 r->headers_out.status = NGX_HTTP_NOT_MODIFIED; 74 r->headers_out.status = NGX_HTTP_NOT_MODIFIED;
75 r->headers_out.content_type.len = 0; 75 r->headers_out.content_type.len = 0;
76 ngx_http_clear_content_length(r); 76 ngx_http_clear_content_length(r);
77 ngx_http_clear_accept_ranges(r); 77 ngx_http_clear_accept_ranges(r);
78 } 78 }