diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-23 17:46:38 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:15 +0100 |
commit | 5a0ddc6f125e29f175dc1886ff89227fbf49721c (patch) | |
tree | a418b1bd80a4309f1e94f282954834f17fa8ca24 | |
parent | 94399c2412eb9dd4ec6412d1b42c2449ab2935c7 (diff) |
Fix declaration after case statement
-rw-r--r-- | src/IO/tls_openssl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/IO/tls_openssl.c b/src/IO/tls_openssl.c index f14153aa..413ec4d5 100644 --- a/src/IO/tls_openssl.c +++ b/src/IO/tls_openssl.c @@ -834,6 +834,7 @@ static int Tls_examine_certificate(SSL *ssl, Server_t *srv) ret = 0; break; case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: + ; /* Case follows declaration */ /* Either self signed and untrusted */ /* Extract CN from certificate name information */ X509_NAME *subject_name = X509_get_subject_name(remote_cert); |