aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-08-09 19:59:45 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-08-09 19:59:45 +0000
commitc55a104fcb42f5bbd1fd417dfef5b8696dc81621 (patch)
tree7f930f05016456e2a57a8d75564c2067b81d9ad4 /src/http/ngx_http_request.c
parent8d1728fabad981760233be9925417e9f0c35d5c7 (diff)
downloadnginx-c55a104fcb42f5bbd1fd417dfef5b8696dc81621.tar.gz
nginx-c55a104fcb42f5bbd1fd417dfef5b8696dc81621.zip
nginx-0.3.57-RELEASE importrelease-0.3.57
*) Feature: the $ssl_client_serial variable. *) Bugfix: in the "!-e" operator of the "if" directive. Thanks to Andrian Budanstov. *) Bugfix: while a client certificate verification nginx did not send to a client the required certificates information. *) Bugfix: the $document_root variable did not support the variables in the "root" directive.
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 42933e8d2..417f3dfa7 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -1344,7 +1344,7 @@ ngx_http_process_request_header(ngx_http_request_t *r)
if (rc != X509_V_OK) {
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
- "client SSL certificate verify error: (%l:%s) ",
+ "client SSL certificate verify error: (%l:%s)",
rc, X509_verify_cert_error_string(rc));
ngx_http_finalize_request(r, NGX_HTTPS_CERT_ERROR);
return NGX_ERROR;