summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-01-08 16:56:14 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-01-08 16:56:14 +0000
commit27fb16140f8519d78e14333650961936bbd82d25 (patch)
treee4a928a4427c54dc95db0ceb479e4af1cc4b6b61
parent8c9cc2f0cec6d470dde87e3612c268d55e1a3529 (diff)
downloadnginx-27fb16140f8519d78e14333650961936bbd82d25.tar.gz
r1632 merge:
omit unnecessary test, because NGX_ERROR == -1, but r->headers_out.last_modified_time != -1 at this point
-rw-r--r--src/http/modules/ngx_http_not_modified_filter_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_not_modified_filter_module.c b/src/http/modules/ngx_http_not_modified_filter_module.c
index dc626362d..ce4b55cf5 100644
--- 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_filter(ngx_http_request_t *r)
* 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);