From: Celeste Liu Date: Sat, 2 Nov 2024 09:46:05 +0000 (+0800) Subject: x509: add a newline after printing Full Name X-Git-Tag: openssl-3.5.0-alpha1~938 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e899361b982651dfa2316e06e56637bc21624ce2;p=thirdparty%2Fopenssl.git x509: add a newline after printing Full Name We forget it in 58301e24f66aa74b13b85a171dd14e6088c35662. Fixes #25853 CLA: trivial Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/25854) --- diff --git a/crypto/x509/v3_crld.c b/crypto/x509/v3_crld.c index ae772cdd80a..032695c01aa 100644 --- a/crypto/x509/v3_crld.c +++ b/crypto/x509/v3_crld.c @@ -424,6 +424,7 @@ static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent) if (dpn->type == 0) { BIO_printf(out, "%*sFull Name:\n", indent, ""); OSSL_GENERAL_NAMES_print(out, dpn->name.fullname, indent); + BIO_puts(out, "\n"); } else { X509_NAME ntmp; ntmp.entries = dpn->name.relativename;