[openssl] OpenSSL_1_1_1-stable update
tmraz at fedoraproject.org
tmraz at fedoraproject.org
Wed Sep 4 14:48:57 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via fb6a82c498b895c5d92a59d0b1737d37da98cefc (commit)
from 907f87d6f5105e10a211e89b1d6050a3d36a35ba (commit)
- Log -----------------------------------------------------------------
commit fb6a82c498b895c5d92a59d0b1737d37da98cefc
Author: Billy Brawner <billy at wbrawner.com>
Date: Tue Aug 27 17:07:17 2019 -0700
Suppress 'No server certificate CA names sent' message
Fixes #9080
Signed-off-by: Billy Brawner <billy at wbrawner.com>
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/9710)
(cherry picked from commit 1e8e75d18be8856e753a57771754b9926c3f4264)
-----------------------------------------------------------------------
Summary of changes:
apps/s_cb.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 520323c8b0..5dc1d03f28 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -1525,7 +1525,8 @@ void print_ca_names(BIO *bio, SSL *s)
int i;
if (sk == NULL || sk_X509_NAME_num(sk) == 0) {
- BIO_printf(bio, "---\nNo %s certificate CA names sent\n", cs);
+ if (!SSL_is_server(s))
+ BIO_printf(bio, "---\nNo %s certificate CA names sent\n", cs);
return;
}
More information about the openssl-commits
mailing list