[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Dr. Stephen Henson steve at openssl.org
Tue Oct 6 14:19:18 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  a0ba92ccde949582e498cb42bced205ec1c95a3c (commit)
      from  f141376ae2892b59f2b1af94204f925832f8dc3a (commit)


- Log -----------------------------------------------------------------
commit a0ba92ccde949582e498cb42bced205ec1c95a3c
Author: Dr. Stephen Henson <steve at openssl.org>
Date:   Tue Oct 6 14:15:14 2015 +0100

    Don't try and parse boolean type.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (cherry picked from commit e58c4d3cdde7a0a01df2884bfeec31a2b07be22d)

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

Summary of changes:
 apps/asn1pars.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/asn1pars.c b/apps/asn1pars.c
index 11b0787..0a6b990 100644
--- a/apps/asn1pars.c
+++ b/apps/asn1pars.c
@@ -313,9 +313,9 @@ int MAIN(int argc, char **argv)
             }
             typ = ASN1_TYPE_get(at);
             if ((typ == V_ASN1_OBJECT)
+                || (typ == V_ASN1_BOOLEAN)
                 || (typ == V_ASN1_NULL)) {
-                BIO_printf(bio_err, "Can't parse %s type\n",
-                           typ == V_ASN1_NULL ? "NULL" : "OBJECT");
+                BIO_printf(bio_err, "Can't parse %s type\n", ASN1_tag2str(typ));
                 ERR_print_errors(bio_err);
                 goto end;
             }


More information about the openssl-commits mailing list