summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-03 16:34:28 +0000
committerRichard Levitte <levitte@openssl.org>2002-12-03 16:34:28 +0000
commit27498a33307b9e79f93f13bb2841f32ce8b2783e (patch)
treeeb3d2628c02c4242942ac221c5b34a94ca60abe4 /apps/s_client.c
parent49cd4b7316879bf8655be2d3927e840e7fcaf546 (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/s_client.c')
-rw-r--r--apps/s_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 7b1fa7b22b..738588c6aa 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -917,7 +917,7 @@ end:
bio_c_out=NULL;
}
apps_shutdown();
- EXIT(ret);
+ OPENSSL_EXIT(ret);
}