comparison src/http/modules/ngx_http_ssi_filter_module.c @ 2041:3f75a582a11e

style fix
author Igor Sysoev <igor@sysoev.ru>
date Wed, 28 May 2008 12:27:08 +0000
parents 7018254cc006
children 2a92804f4109
comparison
equal deleted inserted replaced
2040:eba265857dc2 2041:3f75a582a11e
98 ngx_http_ssi_ctx_t *ctx, ngx_str_t **params); 98 ngx_http_ssi_ctx_t *ctx, ngx_str_t **params);
99 static ngx_int_t ngx_http_ssi_endblock(ngx_http_request_t *r, 99 static ngx_int_t ngx_http_ssi_endblock(ngx_http_request_t *r,
100 ngx_http_ssi_ctx_t *ctx, ngx_str_t **params); 100 ngx_http_ssi_ctx_t *ctx, ngx_str_t **params);
101 101
102 static ngx_int_t ngx_http_ssi_date_gmt_local_variable(ngx_http_request_t *r, 102 static ngx_int_t ngx_http_ssi_date_gmt_local_variable(ngx_http_request_t *r,
103 ngx_http_variable_value_t *v, uintptr_t gmt); 103 ngx_http_variable_value_t *v, uintptr_t gmt);
104 104
105 static char *ngx_http_ssi_types(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); 105 static char *ngx_http_ssi_types(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
106 106
107 static ngx_int_t ngx_http_ssi_preconfiguration(ngx_conf_t *cf); 107 static ngx_int_t ngx_http_ssi_preconfiguration(ngx_conf_t *cf);
108 static void *ngx_http_ssi_create_main_conf(ngx_conf_t *cf); 108 static void *ngx_http_ssi_create_main_conf(ngx_conf_t *cf);
2645 } 2645 }
2646 2646
2647 2647
2648 static ngx_int_t 2648 static ngx_int_t
2649 ngx_http_ssi_date_gmt_local_variable(ngx_http_request_t *r, 2649 ngx_http_ssi_date_gmt_local_variable(ngx_http_request_t *r,
2650 ngx_http_variable_value_t *v, uintptr_t gmt) 2650 ngx_http_variable_value_t *v, uintptr_t gmt)
2651 { 2651 {
2652 ngx_http_ssi_ctx_t *ctx; 2652 ngx_http_ssi_ctx_t *ctx;
2653 ngx_time_t *tp; 2653 ngx_time_t *tp;
2654 struct tm tm; 2654 struct tm tm;
2655 char buf[NGX_HTTP_SSI_DATE_LEN]; 2655 char buf[NGX_HTTP_SSI_DATE_LEN];