diff options
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r-- | src/core/nginx.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index 26406b3e7..68da2ba1c 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -451,12 +451,15 @@ static void *ngx_core_module_create_conf(ngx_cycle_t *cycle) if (!(ccf = ngx_pcalloc(cycle->pool, sizeof(ngx_core_conf_t)))) { return NULL; } - /* set by pcalloc() + + /* + * set by pcalloc() * - * ccf->pid = NULL; - * ccf->newpid = NULL; - * ccf->priority = 0; + * ccf->pid = NULL; + * ccf->newpid = NULL; + * ccf->priority = 0; */ + ccf->daemon = NGX_CONF_UNSET; ccf->master = NGX_CONF_UNSET; ccf->worker_processes = NGX_CONF_UNSET; |