diff options
Diffstat (limited to '')
| -rw-r--r-- | src/http/modules/ngx_http_log_handler.c | 1 | ||||
| -rw-r--r-- | src/http/ngx_http.c | 3 | ||||
| -rw-r--r-- | src/http/ngx_http_output_filter.c | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_log_handler.c b/src/http/modules/ngx_http_log_handler.c index 1ddca3241..c186ac904 100644 --- a/src/http/modules/ngx_http_log_handler.c +++ b/src/http/modules/ngx_http_log_handler.c @@ -45,6 +45,7 @@ ngx_module_t ngx_http_log_module = { ngx_http_log_commands, /* module directives */ NGX_HTTP_MODULE, /* module type */ NULL, /* init module */ + NULL /* init child */ }; diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index cc1f8e894..945502669 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -36,7 +36,8 @@ ngx_module_t ngx_http_module = { &http_name, /* module context */ ngx_http_commands, /* module directives */ NGX_CORE_MODULE, /* module type */ - NULL /* init module */ + NULL, /* init module */ + NULL /* init child */ }; diff --git a/src/http/ngx_http_output_filter.c b/src/http/ngx_http_output_filter.c index 09b7bfab5..dbc56def5 100644 --- a/src/http/ngx_http_output_filter.c +++ b/src/http/ngx_http_output_filter.c @@ -53,7 +53,8 @@ ngx_module_t ngx_http_output_filter_module = { &ngx_http_output_filter_module_ctx, /* module context */ ngx_http_output_filter_commands, /* module directives */ NGX_HTTP_MODULE, /* module type */ - NULL /* init module */ + NULL, /* init module */ + NULL /* init child */ }; |
