summaryrefslogtreecommitdiffstats
path: root/apps/passwd.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-03 16:33:03 +0000
committerRichard Levitte <levitte@openssl.org>2002-12-03 16:33:03 +0000
commit1c3e4a366022c043ae87ff9715905e97582bf649 (patch)
treecdf1cee3703a03e15f8ab3054341a3275bee733b /apps/passwd.c
parent470799152037586dd51e9ec7d39304ddca873b22 (diff)
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/passwd.c')
-rw-r--r--apps/passwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/passwd.c b/apps/passwd.c
index 0c2cf62e8b..3ad91d89d6 100644
--- a/apps/passwd.c
+++ b/apps/passwd.c
@@ -292,7 +292,7 @@ err:
if (out)
BIO_free_all(out);
apps_shutdown();
- EXIT(ret);
+ OPENSSL_EXIT(ret);
}
@@ -505,6 +505,6 @@ err:
int MAIN(int argc, char **argv)
{
fputs("Program not available.\n", stderr)
- EXIT(1);
+ OPENSSL_EXIT(1);
}
#endif