]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
x509: add a newline after printing Full Name
authorCeleste Liu <CoelacanthusHex@gmail.com>
Sat, 2 Nov 2024 09:46:05 +0000 (17:46 +0800)
committerTomas Mraz <tomas@openssl.org>
Tue, 5 Nov 2024 13:22:10 +0000 (14:22 +0100)
We forget it in 58301e24f66aa74b13b85a171dd14e6088c35662.

Fixes #25853

CLA: trivial

Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25854)

crypto/x509/v3_crld.c

index ae772cdd80aadb6b88879cf346aa1170a19df6f2..032695c01aa57edfe6ab81f67e82be0925f0107f 100644 (file)
@@ -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;