diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2019-09-16 19:26:42 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2019-09-16 19:26:42 +0300 |
commit | 555dc61b543bb1fbc50f45b58a422f519d7065ce (patch) | |
tree | 56f783762977f67dee1a5fbad9e7d90cd089300e /src/stream/ngx_stream_ssl_module.c | |
parent | 4cd1dd28ddd91a15720febc491917da5ba16dbe6 (diff) | |
download | nginx-555dc61b543bb1fbc50f45b58a422f519d7065ce.tar.gz nginx-555dc61b543bb1fbc50f45b58a422f519d7065ce.zip |
SSL: fixed ssl_verify_client error message.
Diffstat (limited to 'src/stream/ngx_stream_ssl_module.c')
-rw-r--r-- | src/stream/ngx_stream_ssl_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/ngx_stream_ssl_module.c b/src/stream/ngx_stream_ssl_module.c index ec9524e07..79f30a863 100644 --- a/src/stream/ngx_stream_ssl_module.c +++ b/src/stream/ngx_stream_ssl_module.c @@ -745,7 +745,7 @@ ngx_stream_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child) 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; } |