diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-02-10 16:23:38 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-02-10 16:23:38 +0000 |
commit | c7a2f6860669f45f5abe342163de5bc68e344816 (patch) | |
tree | 08755593cd5f7537d0b63cf2a6c8b835e1082792 /src/http/ngx_http_request.c | |
parent | e9b2cb1b9d286cffa8053e41c87b12ce265c4f25 (diff) | |
download | nginx-c7a2f6860669f45f5abe342163de5bc68e344816.tar.gz nginx-c7a2f6860669f45f5abe342163de5bc68e344816.zip |
nginx-0.0.2-2004-02-10-19:23:38 import
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 8d20a31d5..ff53a7ba6 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -79,10 +79,10 @@ void ngx_http_init_connection(ngx_connection_t *c) ctx->action = "reading client request line"; c->log->data = ctx; c->log->handler = ngx_http_log_error; + c->log_error = NGX_ERROR_INFO; rev = c->read; rev->event_handler = ngx_http_init_request; - rev->log_error = NGX_ERROR_INFO; /* STUB: epoll */ c->write->event_handler = ngx_http_empty_handler; @@ -1272,10 +1272,10 @@ static void ngx_http_keepalive_handler(ngx_event_t *rev) * so we ignore ECONNRESET here. */ - rev->log_error = NGX_ERROR_IGNORE_ECONNRESET; + c->log_error = NGX_ERROR_IGNORE_ECONNRESET; ngx_set_socket_errno(0); n = ngx_recv(c, c->buffer->last, c->buffer->end - c->buffer->last); - rev->log_error = NGX_ERROR_INFO; + c->log_error = NGX_ERROR_INFO; if (n == NGX_AGAIN) { return; |