From 561a86e7832d244e62587240a22268f4a25ee1cd Mon Sep 17 00:00:00 2001 From: Sashan Date: Wed, 1 Apr 2026 08:32:46 +0200 Subject: [PATCH] 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) --- apps/lib/s_cb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.47.3