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:
851fdda
)
Exit on error in ecparam
author
Peter Waltenberg
<pwalten@au1.ibm.com>
Thu, 9 Jul 2015 18:57:30 +0000
(14:57 -0400)
committer
Rich Salz
<rsalz@openssl.org>
Thu, 9 Jul 2015 19:42:52 +0000
(15:42 -0400)
Reviewed-by: Tim Hudson <tjh@openssl.org>
apps/ecparam.c
patch
|
blob
|
history
diff --git
a/apps/ecparam.c
b/apps/ecparam.c
index a0781c525b68e4df607d77160071c6a3fc171aa8..8464c882ca0f0206f5cb0c0f1bc731080910c86c 100644
(file)
--- a/
apps/ecparam.c
+++ b/
apps/ecparam.c
@@
-326,8
+326,9
@@
int ecparam_main(int argc, char **argv)
if (!EC_GROUP_check(group, NULL)) {
BIO_printf(bio_err, "failed\n");
ERR_print_errors(bio_err);
- } else
- BIO_printf(bio_err, "ok\n");
+ goto end;
+ }
+ BIO_printf(bio_err, "ok\n");
}