[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Fri May 6 13:59:23 UTC 2016


The branch master has been updated
       via  ec5b56f3c5c47346c7740e5640d5f66ee2394267 (commit)
      from  4b16fa791d3ad8c6d9d3cb575b749247e774299a (commit)


- Log -----------------------------------------------------------------
commit ec5b56f3c5c47346c7740e5640d5f66ee2394267
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: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

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

diff --git a/crypto/x509/t_req.c b/crypto/x509/t_req.c
index afe59c4..94da0de 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)


More information about the openssl-commits mailing list