summaryrefslogtreecommitdiffstats
path: root/apps/s_time.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-06-23 16:37:32 +0000
committerRichard Levitte <levitte@openssl.org>2001-06-23 16:37:32 +0000
commitc04f8cf44a3b204b82f5f1f5d1ad9dbc738459f1 (patch)
tree976a776db3dba0efd3e7c2ffed56bdad6125fb82 /apps/s_time.c
parent870d986131869300c8510fdba2b4937658f3fa34 (diff)
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/s_time.c')
-rw-r--r--apps/s_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_time.c b/apps/s_time.c
index 3bdf898882..0e2f4566c9 100644
--- a/apps/s_time.c
+++ b/apps/s_time.c
@@ -443,7 +443,6 @@ int MAIN(int argc, char **argv)
if (tm_cipher == NULL ) {
fprintf( stderr, "No CIPHER specified\n" );
-/* EXIT(1); */
}
if (!(perform & 1)) goto next;
@@ -610,6 +609,7 @@ end:
SSL_CTX_free(tm_ctx);
tm_ctx=NULL;
}
+ apps_shutdown();
EXIT(ret);
}