]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Update apps/lib/s_cb.c master
authorSashan <anedvedicky@gmail.com>
Wed, 1 Apr 2026 06:32:46 +0000 (08:32 +0200)
committerNikola Pajkovsky <nikolap@openssl.org>
Fri, 10 Apr 2026 12:22:43 +0000 (14:22 +0200)
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)

apps/lib/s_cb.c

index 5629e138f87674c00e4b354b30cc70c15688667e..c10eec811e57a17fdee0e6bf1d60f1433f85dc46 100644 (file)
@@ -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);
     }