comparison src/http/modules/ngx_http_not_modified_filter_module.c @ 3854:80cc7c8bb845

style fix: remove trailing spaces
author Igor Sysoev <igor@sysoev.ru>
date Thu, 20 Jan 2011 15:29:53 +0000
parents e6e453203bae
children d620f497c50f
comparison
equal deleted inserted replaced
3853:57d2533f98b3 3854:80cc7c8bb845
55 || r != r->main 55 || r != r->main
56 || r->headers_out.last_modified_time == -1) 56 || r->headers_out.last_modified_time == -1)
57 { 57 {
58 return ngx_http_next_header_filter(r); 58 return ngx_http_next_header_filter(r);
59 } 59 }
60 60
61 if (r->headers_in.if_unmodified_since) { 61 if (r->headers_in.if_unmodified_since) {
62 return ngx_http_test_precondition(r); 62 return ngx_http_test_precondition(r);
63 } 63 }
64 64
65 if (r->headers_in.if_modified_since) { 65 if (r->headers_in.if_modified_since) {
66 return ngx_http_test_not_modified(r); 66 return ngx_http_test_not_modified(r);
67 } 67 }
68 68
69 return ngx_http_next_header_filter(r); 69 return ngx_http_next_header_filter(r);