diff options
author | Richard Levitte <levitte@openssl.org> | 2001-06-23 18:37:32 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-06-23 18:37:32 +0200 |
commit | c04f8cf44a3b204b82f5f1f5d1ad9dbc738459f1 (patch) | |
tree | 976a776db3dba0efd3e7c2ffed56bdad6125fb82 /apps/rand.c | |
parent | apps_startup() needs a corresponding apps_shutdown(). (diff) | |
download | openssl-c04f8cf44a3b204b82f5f1f5d1ad9dbc738459f1.tar.xz openssl-c04f8cf44a3b204b82f5f1f5d1ad9dbc738459f1.zip |
Use apps_shutdown() in all applications, in case someone decides not
to go the monolith way (does anyone do that these days?).
NOTE: a few applications are missing in this commit. I've a few more
changes in them that I haven't tested yet.
Diffstat (limited to 'apps/rand.c')
-rw-r--r-- | apps/rand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/rand.c b/apps/rand.c index 10adf0e95d..faba057b77 100644 --- a/apps/rand.c +++ b/apps/rand.c @@ -157,5 +157,6 @@ err: ERR_print_errors(bio_err); if (out) BIO_free_all(out); + apps_shutdown(); EXIT(ret); } |