From 1c3e4a366022c043ae87ff9715905e97582bf649 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 3 Dec 2002 16:33:03 +0000 Subject: EXIT() may mean return(). That's confusing, so let's have it really mean exit() in whatever way works for the intended platform, and define OPENSSL_EXIT() to have the old meaning (the name is of course because it's only used in the openssl program) --- apps/dhparam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/dhparam.c') diff --git a/apps/dhparam.c b/apps/dhparam.c index ea15ef3236..cbc65bcc5f 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -519,7 +519,7 @@ end: if (out != NULL) BIO_free_all(out); if (dh != NULL) DH_free(dh); apps_shutdown(); - EXIT(ret); + OPENSSL_EXIT(ret); } /* dh_cb is identical to dsa_cb in apps/dsaparam.c */ -- cgit v1.2.3