[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Richard Levitte levitte at openssl.org
Sat May 14 18:07:49 UTC 2016


The branch OpenSSL_1_0_2-stable has been updated
       via  688c10544d2ba32428830d0634e91233c20920c1 (commit)
      from  93c9545d4dbc5d48924ecdb1c576f1d6f04555e3 (commit)


- Log -----------------------------------------------------------------
commit 688c10544d2ba32428830d0634e91233c20920c1
Author: isnotnick <isnotnick at users.noreply.github.com>
Date:   Tue Dec 16 16:25:59 2014 +0100

    RT3513: req doesn't display attributes using utf8string
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/asn1/t_req.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/asn1/t_req.c b/crypto/asn1/t_req.c
index 024553a..70aba4c 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)


More information about the openssl-commits mailing list