diff options
author | Richard Levitte <levitte@openssl.org> | 2002-12-03 17:33:03 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-12-03 17:33:03 +0100 |
commit | 1c3e4a366022c043ae87ff9715905e97582bf649 (patch) | |
tree | cdf1cee3703a03e15f8ab3054341a3275bee733b /apps/gendsa.c | |
parent | Make CRYPTO_cleanse() independent of endianness. (diff) | |
download | openssl-1c3e4a366022c043ae87ff9715905e97582bf649.tar.xz openssl-1c3e4a366022c043ae87ff9715905e97582bf649.zip |
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/gendsa.c')
-rw-r--r-- | apps/gendsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gendsa.c b/apps/gendsa.c index 1e1e9f3e4c..4600711c36 100644 --- a/apps/gendsa.c +++ b/apps/gendsa.c @@ -246,6 +246,6 @@ end: if (dsa != NULL) DSA_free(dsa); if(passout) OPENSSL_free(passout); apps_shutdown(); - EXIT(ret); + OPENSSL_EXIT(ret); } #endif |