x509: add a newline after printing Full Name

We forget it in 58301e24f6.

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)

(cherry picked from commit e899361b98)
This commit is contained in:
Celeste Liu 2024-11-02 17:46:05 +08:00 committed by Tomas Mraz
parent d18e539a8a
commit 8a28bca8ee

View 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;