diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/nginx.c | 4 | ||||
-rw-r--r-- | src/core/ngx_config.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index f9c4fe75b..4ed865606 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -635,8 +635,8 @@ static void ngx_worker_process_cycle(ngx_cycle_t *cycle, void *data) if (ngx_quit) { ngx_log_error(NGX_LOG_INFO, cycle->log, 0, - "gracefully shutdowning"); - ngx_setproctitle("worker process is shutdowning"); + "gracefully shutting down"); + ngx_setproctitle("worker process is shutting down"); break; } diff --git a/src/core/ngx_config.h b/src/core/ngx_config.h index 774bac033..e6772bd84 100644 --- a/src/core/ngx_config.h +++ b/src/core/ngx_config.h @@ -2,9 +2,11 @@ #define _NGX_CONFIG_H_INCLUDED_ +#if 0 /* STUB to allocate a big ngx_connections */ #undef FD_SETSIZE #define FD_SETSIZE 5000 +#endif #if defined __FreeBSD__ |