From: Billy Brawner Date: Wed, 28 Aug 2019 00:07:17 +0000 (-0700) Subject: Suppress 'No server certificate CA names sent' message X-Git-Tag: openssl-3.0.0-alpha1~1504 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1e8e75d18be8856e753a57771754b9926c3f4264;p=oweals%2Fopenssl.git Suppress 'No server certificate CA names sent' message Fixes #9080 Signed-off-by: Billy Brawner Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/9710) --- diff --git a/apps/s_cb.c b/apps/s_cb.c index 935ea9022d..47b8afe9ef 100644 --- a/apps/s_cb.c +++ b/apps/s_cb.c @@ -1508,7 +1508,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; }