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/req.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/req.c') diff --git a/apps/req.c b/apps/req.c index 980138f041..a582e69775 100644 --- a/apps/req.c +++ b/apps/req.c @@ -1150,7 +1150,7 @@ end: if (ec_params != NULL) EC_KEY_free(ec_params); #endif apps_shutdown(); - EXIT(ex); + OPENSSL_EXIT(ex); } static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *subj, int attribs, -- cgit v1.2.3