aboutsummaryrefslogtreecommitdiff
path: root/src/core/nginx.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-10-09 14:43:09 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-10-09 14:43:09 +0000
commite7138540d603336a0f2187d8cf20d24b54ed265e (patch)
treeb6bfc769777935beea54afe42db53c18992e4331 /src/core/nginx.c
parent671236993ac3c7e90e76fca8a8d988419686c555 (diff)
downloadnginx-e7138540d603336a0f2187d8cf20d24b54ed265e.tar.gz
nginx-e7138540d603336a0f2187d8cf20d24b54ed265e.zip
nginx did not close log file set by --error-log-path,
the bug was introduced in r2744
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r--src/core/nginx.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c
index eaae62e4b..29eee6a99 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -376,6 +376,13 @@ main(int argc, char *const *argv)
}
}
+ if (log->file->fd != ngx_stderr) {
+ if (ngx_close_file(log->file->fd) == NGX_FILE_ERROR) {
+ ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
+ ngx_close_file_n " built-in log failed");
+ }
+ }
+
ngx_use_stderr = 0;
if (ngx_process == NGX_PROCESS_SINGLE) {