comparison src/http/modules/ngx_http_not_modified_filter.c @ 257:70e1c7d2b83d

nginx-0.0.2-2004-02-11-20:08:49 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Feb 2004 17:08:49 +0000
parents 8dee38ea9117
children 2e3cbc1bbe3c
comparison
equal deleted inserted replaced
256:8e39cab6abd5 257:70e1c7d2b83d
47 } 47 }
48 48
49 ims = ngx_http_parse_time(r->headers_in.if_modified_since->value.data, 49 ims = ngx_http_parse_time(r->headers_in.if_modified_since->value.data,
50 r->headers_in.if_modified_since->value.len); 50 r->headers_in.if_modified_since->value.len);
51 51
52 ngx_log_debug(r->connection->log, "%d %d" _ 52 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
53 ims _ r->headers_out.last_modified_time); 53 "http ims:%d lm:%d", ims, r->headers_out.last_modified_time);
54 54
55 /* 55 /*
56 * I think that the equality of the dates is correcter 56 * I think that the equality of the dates is correcter
57 */ 57 */
58 58