diff options
Diffstat (limited to 'lib/libssl/src/apps/ecparam.c')
-rw-r--r-- | lib/libssl/src/apps/ecparam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/apps/ecparam.c b/lib/libssl/src/apps/ecparam.c index 7a071667c41..49aeab8355e 100644 --- a/lib/libssl/src/apps/ecparam.c +++ b/lib/libssl/src/apps/ecparam.c @@ -134,7 +134,7 @@ ecparam_main(int argc, char **argv) *ec_order = NULL, *ec_cofactor = NULL; unsigned char *buffer = NULL; - apps_startup(); + signal(SIGPIPE, SIG_IGN); if (bio_err == NULL) if ((bio_err = BIO_new(BIO_s_file())) != NULL) @@ -597,7 +597,7 @@ end: BIO_free_all(out); if (group != NULL) EC_GROUP_free(group); - apps_shutdown(); + return (ret); } |