[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Dr. Stephen Henson
steve at openssl.org
Tue Oct 6 14:19:18 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via cba874539596a3f6563c4b462793a99965bcf1e1 (commit)
from 61dfe3a720b37efe97fa5de23ceadd17ce47518d (commit)
- Log -----------------------------------------------------------------
commit cba874539596a3f6563c4b462793a99965bcf1e1
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