diff options
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r-- | src/http/ngx_http.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 48980bbbb..c2e917815 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -201,7 +201,7 @@ static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) } - /* init list of the handlers */ + /* init lists of the handlers */ ngx_init_array(cmcf->phases[NGX_HTTP_REWRITE_PHASE].handlers, cf->cycle->pool, 10, sizeof(ngx_http_handler_pt), @@ -219,10 +219,6 @@ static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) cmcf->phases[NGX_HTTP_TRANSLATE_PHASE].type = NGX_OK; - ngx_init_array(cmcf->index_handlers, cf->cycle->pool, - 3, sizeof(ngx_http_handler_pt), NGX_CONF_ERROR); - - /* create the lists of the ports, the addresses and the server names to allow quickly find the server core module configuration at run-time */ |