mirror of https://github.com/openssl/openssl.git
x509: add a newline after printing Full Name
We forget it in58301e24f6. 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 commite899361b98)
This commit is contained in:
parent
d18e539a8a
commit
8a28bca8ee
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue