diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-08-21 18:21:40 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-08-21 18:21:40 +0000 |
commit | bbe42c41e8f883185745706f92426aa9e73b3eab (patch) | |
tree | 37c4932e652770b5859889ce25ff245655e9be16 /src | |
parent | b29426deb80b1338b3851e748468659edb1e3dd1 (diff) | |
download | nginx-bbe42c41e8f883185745706f92426aa9e73b3eab.tar.gz nginx-bbe42c41e8f883185745706f92426aa9e73b3eab.zip |
call ngx_http_xslt_filter_exit()
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_xslt_filter_module.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_xslt_filter_module.c b/src/http/modules/ngx_http_xslt_filter_module.c index 5ab59d4a1..e4fc5cd2f 100644 --- a/src/http/modules/ngx_http_xslt_filter_module.c +++ b/src/http/modules/ngx_http_xslt_filter_module.c @@ -136,6 +136,7 @@ static void *ngx_http_xslt_filter_create_conf(ngx_conf_t *cf); static char *ngx_http_xslt_filter_merge_conf(ngx_conf_t *cf, void *parent, void *child); static ngx_int_t ngx_http_xslt_filter_init(ngx_conf_t *cf); +static void ngx_http_xslt_filter_exit(ngx_cycle_t *cycle); ngx_str_t ngx_http_xslt_default_types[] = { @@ -196,8 +197,8 @@ ngx_module_t ngx_http_xslt_filter_module = { NULL, /* init process */ NULL, /* init thread */ NULL, /* exit thread */ - NULL, /* exit process */ - NULL, /* exit master */ + ngx_http_xslt_filter_exit, /* exit process */ + ngx_http_xslt_filter_exit, /* exit master */ NGX_MODULE_V1_PADDING }; |