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_0_2i~199 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=688c10544d2ba32428830d0634e91233c20920c1;p=oweals%2Fopenssl.git RT3513: req doesn't display attributes using utf8string Reviewed-by: Rich Salz Reviewed-by: Richard Levitte --- diff --git a/crypto/asn1/t_req.c b/crypto/asn1/t_req.c index 024553ab19..70aba4cc3b 100644 --- a/crypto/asn1/t_req.c +++ b/crypto/asn1/t_req.c @@ -196,6 +196,7 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, if (BIO_puts(bp, ":") <= 0) goto err; if ((type == V_ASN1_PRINTABLESTRING) || + (type == V_ASN1_UTF8STRING) || (type == V_ASN1_T61STRING) || (type == V_ASN1_IA5STRING)) { if (BIO_write(bp, (char *)bs->data, bs->length)