Commit 5abe32d8 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Return 2 from X509_NAME printing routine to add newline.

parent 9194296d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}