diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2021-05-28 13:33:08 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-05-28 13:33:08 +0300 |
commit | b2b8637f98698fa8795079922d6227a2d5a3a0ad (patch) | |
tree | b61cb2817764a4c1b49d1e9c42f31f0c834bfeb8 /src/http/ngx_http_request.c | |
parent | 03fcff287db0d6b620f837de95116ad3a3b7e1e9 (diff) | |
parent | 798813e96b0a948b4713e92b67ecae8116f9d08f (diff) | |
download | nginx-b2b8637f98698fa8795079922d6227a2d5a3a0ad.tar.gz nginx-b2b8637f98698fa8795079922d6227a2d5a3a0ad.zip |
Merged with the default branch.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 0d0ed54c3..1816c0360 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -1052,12 +1052,14 @@ ngx_http_ssl_certificate(ngx_ssl_conn_t *ssl_conn, void *arg) } ngx_http_free_request(r, 0); + c->log->action = "SSL handshaking"; c->destroyed = 0; return 1; failed: ngx_http_free_request(r, 0); + c->log->action = "SSL handshaking"; c->destroyed = 0; return 0; } |