summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-04-15 10:57:40 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-04-15 10:57:40 +0000
commit50e1cc45609b94259d3a9f2474a2c4682de776c2 (patch)
treebf21db6ca46d3b4c5501b82d00261c88dd071352 /src
parentea8536b8219385eff9ecea62cbad6ad31e4db616 (diff)
downloadnginx-50e1cc45609b94259d3a9f2474a2c4682de776c2.tar.gz
nginx-50e1cc45609b94259d3a9f2474a2c4682de776c2.tar.bz2
style fix
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_not_modified_filter_module.c8
1 files changed, 4 insertions, 4 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 ac1227a4c..5312b3a22 100644
--- a/src/http/modules/ngx_http_not_modified_filter_module.c
+++ b/src/http/modules/ngx_http_not_modified_filter_module.c
@@ -47,8 +47,8 @@ ngx_module_t ngx_http_not_modified_filter_module = {
static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
-static
-ngx_int_t ngx_http_not_modified_header_filter(ngx_http_request_t *r)
+static ngx_int_t
+ngx_http_not_modified_header_filter(ngx_http_request_t *r)
{
time_t ims;
ngx_http_core_loc_conf_t *clcf;
@@ -92,8 +92,8 @@ ngx_int_t ngx_http_not_modified_header_filter(ngx_http_request_t *r)
}
-static
-ngx_int_t ngx_http_not_modified_filter_init(ngx_conf_t *cf)
+static ngx_int_t
+ngx_http_not_modified_filter_init(ngx_conf_t *cf)
{
ngx_http_next_header_filter = ngx_http_top_header_filter;
ngx_http_top_header_filter = ngx_http_not_modified_header_filter;