From: Dr. Stephen Henson Date: Thu, 1 Sep 2005 18:02:51 +0000 (+0000) Subject: Return 2 from X509_NAME printing routine to add newline. X-Git-Tag: OpenSSL_0_9_8k^2~1829 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5abe32d8611b26630305731f7dd4ea564264719e;p=oweals%2Fopenssl.git Return 2 from X509_NAME printing routine to add newline. --- 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; }