projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9194296
)
Return 2 from X509_NAME printing routine to add newline.
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 1 Sep 2005 18:02:51 +0000
(18:02 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Thu, 1 Sep 2005 18:02:51 +0000
(18:02 +0000)
crypto/asn1/x_name.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/x_name.c
b/crypto/asn1/x_name.c
index 7f4e39bcf4a153fb935dd8de55cc28da047571b1..8701c54114b784148a358b13c592c4c80fb9f696 100644
(file)
--- 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
;
}