summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-08-08 14:21:04 +0000
committerBodo Möller <bodo@openssl.org>1999-08-08 14:21:04 +0000
commit204cf1abb0fa5c5f31397a79eac3a8739f360d9e (patch)
tree62bd1b4b4a5f1266fb643841b3bedfbf6008afe0 /apps
parent5e6369197282df109556ba59c98d86144bfa2111 (diff)
Comments.
Diffstat (limited to 'apps')
-rw-r--r--apps/s_client.c2
-rw-r--r--apps/s_server.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index ff97f0be7f..b06104130e 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -142,7 +142,7 @@ static void sc_usage(void)
#ifdef FIONBIO
BIO_printf(bio_err," -nbio - Run with non-blocking IO\n");
#endif
-#ifdef APPS_CRLF
+#ifdef APPS_CRLF /* won't be #ifdef'd in next release */
BIO_printf(bio_err," -crlf - convert LF from terminal into CRLF\n");
#endif
BIO_printf(bio_err," -quiet - no s_client output\n");
diff --git a/apps/s_server.c b/apps/s_server.c
index a78a4bcd7b..9a81418cda 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -169,8 +169,8 @@ static char *s_dcert_file=NULL,*s_dkey_file=NULL;
static int s_nbio=0;
#endif
static int s_nbio_test=0;
-#ifdef APPS_CRLF
- int s_crlf=0;
+#ifdef APPS_CRLF /* won't be #ifdef'd in next release */
+int s_crlf=0;
#endif
static SSL_CTX *ctx=NULL;
static int www=0;