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:
8776293
)
Replace BIO_printf with ASN1_STRING_print in GENERAL_NAME_print
author
Acheev Bhagat
<acheevbhagat@hotmail.com>
Fri, 7 Jun 2019 00:05:49 +0000
(20:05 -0400)
committer
Dr. Matthias St. Pierre
<Matthias.St.Pierre@ncp-e.com>
Fri, 7 Jun 2019 07:09:22 +0000
(09:09 +0200)
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/9101)
crypto/x509/v3_alt.c
patch
|
blob
|
history
diff --git
a/crypto/x509/v3_alt.c
b/crypto/x509/v3_alt.c
index 9b627e071c6f29f40ddc8ce6b05e4f8df1c4794b..307994042c881d1b60d3387854a6e93129d5b123 100644
(file)
--- a/
crypto/x509/v3_alt.c
+++ b/
crypto/x509/v3_alt.c
@@
-157,15
+157,18
@@
int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen)
break;
case GEN_EMAIL:
- BIO_printf(out, "email:%s", gen->d.ia5->data);
+ BIO_printf(out, "email:");
+ ASN1_STRING_print(out, gen->d.ia5);
break;
case GEN_DNS:
- BIO_printf(out, "DNS:%s", gen->d.ia5->data);
+ BIO_printf(out, "DNS:");
+ ASN1_STRING_print(out, gen->d.ia5);
break;
case GEN_URI:
- BIO_printf(out, "URI:%s", gen->d.ia5->data);
+ BIO_printf(out, "URI:");
+ ASN1_STRING_print(out, gen->d.ia5);
break;
case GEN_DIRNAME: