summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAcheev Bhagat <acheevbhagat@hotmail.com>2019-06-06 20:05:49 -0400
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-06-07 10:38:49 +0200
commit8479e9e97354add3c562670db66b5f8151dc3b2e (patch)
tree80363b7158ec4aaa5cb7b1579ac01f8d18fd9d9f
parentec36b3298502fe71110a14197c54555b6cf6ca75 (diff)
Replace BIO_printf with ASN1_STRING_print in GENERAL_NAME_print
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)
-rw-r--r--crypto/x509v3/v3_alt.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/crypto/x509v3/v3_alt.c b/crypto/x509v3/v3_alt.c
index d4d024c561..bba2e41380 100644
--- a/crypto/x509v3/v3_alt.c
+++ b/crypto/x509v3/v3_alt.c
@@ -205,15 +205,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: