Commit 561a86e783 for openssl.org

commit 561a86e7832d244e62587240a22268f4a25ee1cd
Author: Sashan <anedvedicky@gmail.com>
Date:   Wed Apr 1 08:32:46 2026 +0200

    Update apps/lib/s_cb.c

    Co-authored-by: Bob Beck <beck@obtuse.com>

    Reviewed-by: Neil Horman <nhorman@openssl.org>
    Reviewed-by: Tomas Mraz <tomas@openssl.foundation>
    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 5629e138f8..c10eec811e 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);
     }