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/pkcs12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/pkcs12.c') diff --git a/apps/pkcs12.c b/apps/pkcs12.c index 536cf57c15..e445c24b9b 100644 --- a/apps/pkcs12.c +++ b/apps/pkcs12.c @@ -651,7 +651,7 @@ int MAIN(int argc, char **argv) if(passin) OPENSSL_free(passin); if(passout) OPENSSL_free(passout); apps_shutdown(); - EXIT(ret); + OPENSSL_EXIT(ret); } int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass, -- cgit v1.2.3