aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.c
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2012-04-16 13:05:20 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2012-04-16 13:05:20 +0000
commit9e2f86cfc01e1841b7db727ce2d5282f07364d46 (patch)
treefc6471836befee59bf1906796b4f90ee7028285b /src/http/ngx_http_request.c
parent43d2b1c04562dbd7c651d8d135d93bb8116b9133 (diff)
downloadnginx-9e2f86cfc01e1841b7db727ce2d5282f07364d46.tar.gz
nginx-9e2f86cfc01e1841b7db727ce2d5282f07364d46.zip
Fixed log->action after ssl handshake.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r--src/http/ngx_http_request.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
index 75ed23af1..052f379ac 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -612,6 +612,8 @@ ngx_http_ssl_handshake_handler(ngx_connection_t *c)
c->ssl->no_wait_shutdown = 1;
+ c->log->action = "reading client request line";
+
c->read->handler = ngx_http_process_request_line;
/* STUB: epoll edge */ c->write->handler = ngx_http_empty_handler;