diff options
author | Richard Levitte <levitte@openssl.org> | 2002-12-03 16:33:03 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-12-03 16:33:03 +0000 |
commit | 1c3e4a366022c043ae87ff9715905e97582bf649 (patch) | |
tree | cdf1cee3703a03e15f8ab3054341a3275bee733b /apps/crl.c | |
parent | 470799152037586dd51e9ec7d39304ddca873b22 (diff) | |
download | openssl-new-1c3e4a366022c043ae87ff9715905e97582bf649.tar.gz |
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)
Diffstat (limited to 'apps/crl.c')
-rw-r--r-- | apps/crl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/crl.c b/apps/crl.c index 00946b4d20..c6089ace52 100644 --- a/apps/crl.c +++ b/apps/crl.c @@ -377,7 +377,7 @@ end: X509_STORE_free(store); } apps_shutdown(); - EXIT(ret); + OPENSSL_EXIT(ret); } static X509_CRL *load_crl(char *infile, int format) |