diff options
Diffstat (limited to 'src/lib/libssl/src/apps/gendsa.c')
-rw-r--r-- | src/lib/libssl/src/apps/gendsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/gendsa.c b/src/lib/libssl/src/apps/gendsa.c index f21036a608..8a0d3ecbed 100644 --- a/src/lib/libssl/src/apps/gendsa.c +++ b/src/lib/libssl/src/apps/gendsa.c | |||
@@ -88,7 +88,7 @@ gendsa_main(int argc, char **argv) | |||
88 | char *engine = NULL; | 88 | char *engine = NULL; |
89 | #endif | 89 | #endif |
90 | 90 | ||
91 | apps_startup(); | 91 | signal(SIGPIPE, SIG_IGN); |
92 | 92 | ||
93 | if (bio_err == NULL) | 93 | if (bio_err == NULL) |
94 | if ((bio_err = BIO_new(BIO_s_file())) != NULL) | 94 | if ((bio_err = BIO_new(BIO_s_file())) != NULL) |
@@ -247,7 +247,7 @@ end: | |||
247 | DSA_free(dsa); | 247 | DSA_free(dsa); |
248 | if (passout) | 248 | if (passout) |
249 | free(passout); | 249 | free(passout); |
250 | apps_shutdown(); | 250 | |
251 | return (ret); | 251 | return (ret); |
252 | } | 252 | } |
253 | #endif | 253 | #endif |