summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/apps/rand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/apps/rand.c')
-rw-r--r--src/lib/libssl/src/apps/rand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/rand.c b/src/lib/libssl/src/apps/rand.c
index fa8a65a267..458d5ac7b8 100644
--- a/src/lib/libssl/src/apps/rand.c
+++ b/src/lib/libssl/src/apps/rand.c
@@ -88,7 +88,7 @@ rand_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)
@@ -207,6 +207,6 @@ err:
207 ERR_print_errors(bio_err); 207 ERR_print_errors(bio_err);
208 if (out) 208 if (out)
209 BIO_free_all(out); 209 BIO_free_all(out);
210 apps_shutdown(); 210
211 return (ret); 211 return (ret);
212} 212}