diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-02-22 19:41:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-02-22 19:41:39 +0000 |
commit | cce886c71df5b1de9d9bf57fc26f9d830cb517eb (patch) | |
tree | d25f11e23de1ec0fb0ab74dbf2dc08b29da8c110 /src/event/ngx_event_accept.c | |
parent | 2a74c506c726b1ba06a329f6293540e9ea213326 (diff) | |
download | nginx-release-0.3.30.tar.gz nginx-release-0.3.30.zip |
nginx-0.3.30-RELEASE importrelease-0.3.30
*) Change: the ECONNABORTED error log level was changed to "error" from
"crit".
*) Bugfix: the ngx_http_perl_module could not be build without the
ngx_http_ssi_filter_module.
*) Bugfix: nginx could not be built on i386 platform, if the PIC was
used; the bug had appeared in 0.3.27.
Diffstat (limited to 'src/event/ngx_event_accept.c')
-rw-r--r-- | src/event/ngx_event_accept.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/ngx_event_accept.c b/src/event/ngx_event_accept.c index a795075d0..287777d28 100644 --- a/src/event/ngx_event_accept.c +++ b/src/event/ngx_event_accept.c @@ -59,7 +59,7 @@ ngx_event_accept(ngx_event_t *ev) return; } - ngx_log_error((err == NGX_ECONNABORTED) ? NGX_LOG_CRIT: + ngx_log_error((err == NGX_ECONNABORTED) ? NGX_LOG_ERR: NGX_LOG_ALERT, ev->log, err, "accept() failed"); |