projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89133ba
)
Don't try and parse boolean type.
author
Dr. Stephen Henson
<steve@openssl.org>
Tue, 6 Oct 2015 13:15:14 +0000
(14:15 +0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Tue, 6 Oct 2015 14:18:05 +0000
(15:18 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit
e58c4d3cdde7a0a01df2884bfeec31a2b07be22d
)
apps/asn1pars.c
patch
|
blob
|
history
diff --git
a/apps/asn1pars.c
b/apps/asn1pars.c
index 3c9da5c03628fd91483d12097160b12ead4f39e8..e3751f42353d6fbebe41bfb0c52854e617ea1c13 100644
(file)
--- 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;
}