diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-04-19 06:27:10 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-04-19 06:27:10 +0000 |
commit | 16eab663140d81ec70c7d7929ae8fcbd3a9c3e1e (patch) | |
tree | 7892655ae6ab0dacd30b8c9d1a5d27e7ae8e01b6 /src | |
parent | e0f866273f276b6d1848ee0f4f9f476c0c68150c (diff) | |
download | nginx-16eab663140d81ec70c7d7929ae8fcbd3a9c3e1e.tar.gz nginx-16eab663140d81ec70c7d7929ae8fcbd3a9c3e1e.zip |
style fix: rename functions
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_ssi_filter_module.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/http/modules/ngx_http_ssi_filter_module.c b/src/http/modules/ngx_http_ssi_filter_module.c index e1d0e924d..79e89f18a 100644 --- a/src/http/modules/ngx_http_ssi_filter_module.c +++ b/src/http/modules/ngx_http_ssi_filter_module.c @@ -107,8 +107,8 @@ static char *ngx_http_ssi_types(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); static ngx_int_t ngx_http_ssi_preconfiguration(ngx_conf_t *cf); static void *ngx_http_ssi_create_main_conf(ngx_conf_t *cf); static char *ngx_http_ssi_init_main_conf(ngx_conf_t *cf, void *conf); -static void *ngx_http_ssi_create_conf(ngx_conf_t *cf); -static char *ngx_http_ssi_merge_conf(ngx_conf_t *cf, +static void *ngx_http_ssi_create_loc_conf(ngx_conf_t *cf); +static char *ngx_http_ssi_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child); static ngx_int_t ngx_http_ssi_filter_init(ngx_conf_t *cf); @@ -173,8 +173,8 @@ static ngx_http_module_t ngx_http_ssi_filter_module_ctx = { NULL, /* create server configuration */ NULL, /* merge server configuration */ - ngx_http_ssi_create_conf, /* create location configuration */ - ngx_http_ssi_merge_conf /* merge location configuration */ + ngx_http_ssi_create_loc_conf, /* create location configuration */ + ngx_http_ssi_merge_loc_conf /* merge location configuration */ }; @@ -2746,7 +2746,7 @@ ngx_http_ssi_init_main_conf(ngx_conf_t *cf, void *conf) static void * -ngx_http_ssi_create_conf(ngx_conf_t *cf) +ngx_http_ssi_create_loc_conf(ngx_conf_t *cf) { ngx_http_ssi_loc_conf_t *slcf; @@ -2773,7 +2773,7 @@ ngx_http_ssi_create_conf(ngx_conf_t *cf) static char * -ngx_http_ssi_merge_conf(ngx_conf_t *cf, void *parent, void *child) +ngx_http_ssi_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) { ngx_http_ssi_loc_conf_t *prev = parent; ngx_http_ssi_loc_conf_t *conf = child; |