From 236e0457517d901278cc7938f324298ddc49d24a Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 23 Sep 2004 16:39:34 +0000 Subject: nginx-0.0.12-2004-09-23-20:39:34 import --- src/http/modules/proxy/ngx_http_proxy_handler.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/http/modules/proxy/ngx_http_proxy_handler.c') diff --git a/src/http/modules/proxy/ngx_http_proxy_handler.c b/src/http/modules/proxy/ngx_http_proxy_handler.c index f057d3c98..af5e54636 100644 --- a/src/http/modules/proxy/ngx_http_proxy_handler.c +++ b/src/http/modules/proxy/ngx_http_proxy_handler.c @@ -401,7 +401,7 @@ void ngx_http_proxy_check_broken_connection(ngx_event_t *ev) if (!p->cachable && p->upstream->peer.connection) { ngx_log_error(NGX_LOG_INFO, ev->log, ev->kq_errno, - "kevent() reported that client have closed " + "kevent() reported that client closed " "prematurely connection, " "so upstream connection is closed too"); ngx_http_proxy_finalize_request(p, NGX_HTTP_CLIENT_CLOSED_REQUEST); @@ -409,7 +409,7 @@ void ngx_http_proxy_check_broken_connection(ngx_event_t *ev) } ngx_log_error(NGX_LOG_INFO, ev->log, ev->kq_errno, - "kevent() reported that client have closed " + "kevent() reported that client closed " "prematurely connection"); if (p->upstream == NULL || p->upstream->peer.connection == NULL) { @@ -464,14 +464,14 @@ void ngx_http_proxy_check_broken_connection(ngx_event_t *ev) if (!p->cachable && p->upstream->peer.connection) { ngx_log_error(NGX_LOG_INFO, ev->log, err, - "client have closed prematurely connection, " + "client closed prematurely connection, " "so upstream connection is closed too"); ngx_http_proxy_finalize_request(p, NGX_HTTP_CLIENT_CLOSED_REQUEST); return; } ngx_log_error(NGX_LOG_INFO, ev->log, err, - "client have closed prematurely connection"); + "client closed prematurely connection"); if (p->upstream == NULL || p->upstream->peer.connection == NULL) { ngx_http_proxy_finalize_request(p, NGX_HTTP_CLIENT_CLOSED_REQUEST); -- cgit v1.2.3