aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-01-20 15:29:53 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-01-20 15:29:53 +0000
commitd19c93d127ef8a018bad0612f2a6e1fcb6cfa6fe (patch)
treeaf769bfb7a87341669d8ab3a4c77c97d13764c55 /src
parentcfc5c2558967804e21edf012dc0337799c3f0c3e (diff)
downloadnginx-d19c93d127ef8a018bad0612f2a6e1fcb6cfa6fe.tar.gz
nginx-d19c93d127ef8a018bad0612f2a6e1fcb6cfa6fe.zip
style fix: remove trailing spaces
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_not_modified_filter_module.c4
1 files changed, 2 insertions, 2 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 b03d67dee..a778c70dc 100644
--- a/src/http/modules/ngx_http_not_modified_filter_module.c
+++ b/src/http/modules/ngx_http_not_modified_filter_module.c
@@ -57,11 +57,11 @@ ngx_http_not_modified_header_filter(ngx_http_request_t *r)
{
return ngx_http_next_header_filter(r);
}
-
+
if (r->headers_in.if_unmodified_since) {
return ngx_http_test_precondition(r);
}
-
+
if (r->headers_in.if_modified_since) {
return ngx_http_test_not_modified(r);
}