[nginx] SSL: fixed ssl_verify_client error message.

Sergey Kandaurov pluknet at nginx.com
Mon Sep 16 16:27:54 UTC 2019


details:   https://hg.nginx.org/nginx/rev/ef7ee19776db
branches:  
changeset: 7567:ef7ee19776db
user:      Sergey Kandaurov <pluknet at nginx.com>
date:      Mon Sep 16 19:26:42 2019 +0300
description:
SSL: fixed ssl_verify_client error message.

diffstat:

 src/http/modules/ngx_http_ssl_module.c |  2 +-
 src/mail/ngx_mail_ssl_module.c         |  2 +-
 src/stream/ngx_stream_ssl_module.c     |  2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diffs (36 lines):

diff -r 571383f75a9a -r ef7ee19776db src/http/modules/ngx_http_ssl_module.c
--- a/src/http/modules/ngx_http_ssl_module.c	Tue Sep 10 15:42:34 2019 +0300
+++ b/src/http/modules/ngx_http_ssl_module.c	Mon Sep 16 19:26:42 2019 +0300
@@ -777,7 +777,7 @@ ngx_http_ssl_merge_srv_conf(ngx_conf_t *
 
         if (conf->client_certificate.len == 0 && conf->verify != 3) {
             ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
-                          "no ssl_client_certificate for ssl_client_verify");
+                          "no ssl_client_certificate for ssl_verify_client");
             return NGX_CONF_ERROR;
         }
 
diff -r 571383f75a9a -r ef7ee19776db src/mail/ngx_mail_ssl_module.c
--- a/src/mail/ngx_mail_ssl_module.c	Tue Sep 10 15:42:34 2019 +0300
+++ b/src/mail/ngx_mail_ssl_module.c	Mon Sep 16 19:26:42 2019 +0300
@@ -388,7 +388,7 @@ ngx_mail_ssl_merge_conf(ngx_conf_t *cf, 
 
         if (conf->client_certificate.len == 0 && conf->verify != 3) {
             ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
-                          "no ssl_client_certificate for ssl_client_verify");
+                          "no ssl_client_certificate for ssl_verify_client");
             return NGX_CONF_ERROR;
         }
 
diff -r 571383f75a9a -r ef7ee19776db src/stream/ngx_stream_ssl_module.c
--- a/src/stream/ngx_stream_ssl_module.c	Tue Sep 10 15:42:34 2019 +0300
+++ b/src/stream/ngx_stream_ssl_module.c	Mon Sep 16 19:26:42 2019 +0300
@@ -745,7 +745,7 @@ ngx_stream_ssl_merge_conf(ngx_conf_t *cf
 
         if (conf->client_certificate.len == 0 && conf->verify != 3) {
             ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
-                          "no ssl_client_certificate for ssl_client_verify");
+                          "no ssl_client_certificate for ssl_verify_client");
             return NGX_CONF_ERROR;
         }
 


More information about the nginx-devel mailing list