From a7f7fa878ce271af23bbb6e1586bae1273eb10d2 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 11 Jul 2003 04:50:59 +0000 Subject: nginx-0.0.1-2003-07-11-08:50:59 import --- src/http/modules/ngx_http_log_handler.c | 1 + src/http/ngx_http.c | 3 ++- src/http/ngx_http_output_filter.c | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) (limited to 'src/http') 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 */ }; -- cgit