Skip to content

Commit

Permalink
x509: add a newline after printing Full Name
Browse files Browse the repository at this point in the history
We forget it in 58301e2.

Fixes openssl#25853

CLA: trivial

Reviewed-by: Tom Cosgrove <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from openssl#25854)
  • Loading branch information
CoelacanthusHex authored and t8m committed Nov 5, 2024
1 parent 0b234a2 commit e899361
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crypto/x509/v3_crld.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e899361

Please sign in to comment.