From: isnotnick Date: Tue, 16 Dec 2014 15:25:59 +0000 (+0100) Subject: RT3513: req doesn't display attributes using utf8string X-Git-Tag: OpenSSL_1_1_0-pre6~909 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec5b56f3c5c47346c7740e5640d5f66ee2394267;p=openssl RT3513: req doesn't display attributes using utf8string Reviewed-by: Matt Caswell Reviewed-by: Richard Levitte --- diff --git a/crypto/x509/t_req.c b/crypto/x509/t_req.c index afe59c4e9c..94da0de7a4 100644 --- a/crypto/x509/t_req.c +++ b/crypto/x509/t_req.c @@ -181,6 +181,7 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, goto err; if ((type == V_ASN1_PRINTABLESTRING) || (type == V_ASN1_T61STRING) || + (type == V_ASN1_UTF8STRING) || (type == V_ASN1_IA5STRING)) { if (BIO_write(bp, (char *)bs->data, bs->length) != bs->length)