changeset 1844:dfae35fa0038 stable-0.5

r1632 merge: omit unnecessary test, because NGX_ERROR == -1, but r->headers_out.last_modified_time != -1 at this point
author Igor Sysoev <igor@sysoev.ru>
date Tue, 08 Jan 2008 16:56:14 +0000
parents 1f802d26204f
children 8f5745fe2636
files src/http/modules/ngx_http_not_modified_filter_module.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_not_modified_filter_module.c
+++ b/src/http/modules/ngx_http_not_modified_filter_module.c
@@ -70,7 +70,7 @@ ngx_int_t ngx_http_not_modified_header_f
      * I think that the equality of the dates is correcter
      */
 
-    if (ims != NGX_ERROR && ims == r->headers_out.last_modified_time) {
+    if (ims == r->headers_out.last_modified_time) {
         r->headers_out.status = NGX_HTTP_NOT_MODIFIED;
         r->headers_out.content_type.len = 0;
         ngx_http_clear_content_length(r);