From: Sashan Date: Wed, 1 Apr 2026 06:32:46 +0000 (+0200) Subject: Update apps/lib/s_cb.c X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=HEAD;p=thirdparty%2Fopenssl.git Update apps/lib/s_cb.c Co-authored-by: Bob Beck Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz MergeDate: Fri Apr 10 12:22:48 2026 (Merged from https://github.com/openssl/openssl/pull/30596) --- diff --git a/apps/lib/s_cb.c b/apps/lib/s_cb.c index 5629e138f87..c10eec811e5 100644 --- a/apps/lib/s_cb.c +++ b/apps/lib/s_cb.c @@ -375,7 +375,7 @@ int ssl_print_groups(BIO *out, SSL *s, int noshared) nid = groups[i]; const char *name = SSL_group_to_name(s, nid); if (name == NULL) - BIO_printf(out, "%d", nid); + BIO_printf(out, "NID %d", nid); else BIO_puts(out, name); }