summaryrefslogtreecommitdiffstats
path: root/apps/s_time.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-30 14:52:57 -0500
committerRich Salz <rsalz@openssl.org>2015-01-30 14:52:57 -0500
commit75d0ebef2aef7a2c77b27575b8da898e22f3ccd5 (patch)
tree9db0aaec4eeaad8510d1e24e384f99c46dff145e /apps/s_time.c
parentd6fbb194095312f4722c81c9362dbd0de66cb656 (diff)
Dead code clean: #if 0 removal in apps
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps/s_time.c')
-rw-r--r--apps/s_time.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/apps/s_time.c b/apps/s_time.c
index 972dccff2c..102ee7291b 100644
--- a/apps/s_time.c
+++ b/apps/s_time.c
@@ -217,17 +217,6 @@ static int parseArgs(int argc, char **argv)
goto bad;
host = *(++argv);
}
-#if 0
- else if (strcmp(*argv, "-host") == 0) {
- if (--argc < 1)
- goto bad;
- host = *(++argv);
- } else if (strcmp(*argv, "-port") == 0) {
- if (--argc < 1)
- goto bad;
- port = *(++argv);
- }
-#endif
else if (strcmp(*argv, "-reuse") == 0)
perform = 2;
else if (strcmp(*argv, "-new") == 0)
@@ -582,11 +571,6 @@ static SSL *doConnection(SSL *scon)
SSL_set_bio(serverCon, conn, conn);
-#if 0
- if (scon != NULL)
- SSL_set_session(serverCon, SSL_get_session(scon));
-#endif
-
/* ok, lets connect */
for (;;) {
i = SSL_connect(serverCon);