From 5abe32d8611b26630305731f7dd4ea564264719e Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 1 Sep 2005 18:02:51 +0000 Subject: [PATCH] Return 2 from X509_NAME printing routine to add newline. --- crypto/asn1/x_name.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/x_name.c b/crypto/asn1/x_name.c index 7f4e39bcf4..8701c54114 100644 --- a/crypto/asn1/x_name.c +++ b/crypto/asn1/x_name.c @@ -268,7 +268,7 @@ static int x509_name_ex_print(BIO *out, ASN1_VALUE **pval, if (X509_NAME_print_ex(out, (X509_NAME *)*pval, indent, pctx->nm_flags) <= 0) return 0; - return 1; + return 2; } -- 2.25.1