From: Igor Sysoev Date: Wed, 15 Apr 2009 10:57:40 +0000 (+0000) Subject: style fix X-Git-Tag: release-0.7.52~24 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/%7B@url%7D?a=commitdiff_plain;h=50e1cc45609b94259d3a9f2474a2c4682de776c2;p=nginx.git style fix --- 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;