summaryrefslogtreecommitdiffstats
path: root/apps/nseq.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/nseq.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/nseq.c')
-rw-r--r--apps/nseq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/nseq.c b/apps/nseq.c
index c26f62cb61..dc71d45012 100644
--- a/apps/nseq.c
+++ b/apps/nseq.c
@@ -102,7 +102,7 @@ int MAIN(int argc, char **argv)
BIO_printf (bio_err, "-in file input file\n");
BIO_printf (bio_err, "-out file output file\n");
BIO_printf (bio_err, "-toseq output NS Sequence file\n");
- EXIT(1);
+ OPENSSL_EXIT(1);
}
if (infile) {
@@ -162,6 +162,6 @@ end:
BIO_free_all(out);
NETSCAPE_CERT_SEQUENCE_free(seq);
- EXIT(ret);
+ OPENSSL_EXIT(ret);
}