aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-01-08 18:23:38 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-01-08 18:23:38 +0000
commit1691aaf290e90da6206b3ca5eea53676764f8432 (patch)
treebd2c4c6d606c5f12e4f652ee43265bf709a23239 /src/http/ngx_http_request.c
parent2316936389d0c2aa2ae1fc966fbed6c6cf660279 (diff)
downloadnginx-1691aaf290e90da6206b3ca5eea53676764f8432.tar.gz
nginx-1691aaf290e90da6206b3ca5eea53676764f8432.zip
correct an error log message
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r--src/http/ngx_http_request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
index 88a0d0950..74ca4b841 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -977,7 +977,7 @@ ngx_http_read_request_header(ngx_http_request_t *r)
if (n == 0 || n == NGX_ERROR) {
c->error = 1;
- c->log->action = "sending response to client";
+ c->log->action = "reading client request headers";
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return NGX_ERROR;