summaryrefslogtreecommitdiffstats
path: root/apps/asn1pars.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/asn1pars.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/asn1pars.c')
-rw-r--r--apps/asn1pars.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/asn1pars.c b/apps/asn1pars.c
index dc41da38a0..5f8ba5e730 100644
--- a/apps/asn1pars.c
+++ b/apps/asn1pars.c
@@ -361,7 +361,7 @@ end:
if (osk != NULL) sk_free(osk);
OBJ_cleanup();
apps_shutdown();
- EXIT(ret);
+ OPENSSL_EXIT(ret);
}
static int do_generate(BIO *bio, char *genstr, char *genconf, BUF_MEM *buf)