summaryrefslogtreecommitdiffstats
path: root/apps/s_time.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2014-11-29 16:17:54 +0100
committerKurt Roeckx <kurt@roeckx.be>2014-12-02 11:26:49 +0100
commit961d2ddb4b48e0e857a704b0cc6b475d63372419 (patch)
treefa1b4a293a1805c54d62c6958cb1696899be8add /apps/s_time.c
parent8cfe08b4ec0467dc2a30a9794786e95f899cf889 (diff)
Use the SSLv23 method by default
If SSLv2 and SSLv3 are both disabled we still support SSL/TLS. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/s_time.c')
-rw-r--r--apps/s_time.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/s_time.c b/apps/s_time.c
index b823c33c58..81dad53243 100644
--- a/apps/s_time.c
+++ b/apps/s_time.c
@@ -349,13 +349,7 @@ int MAIN(int argc, char **argv)
if (bio_err == NULL)
bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
-#if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
s_time_meth=SSLv23_client_method();
-#elif !defined(OPENSSL_NO_SSL3)
- s_time_meth=SSLv3_client_method();
-#elif !defined(OPENSSL_NO_SSL2)
- s_time_meth=SSLv2_client_method();
-#endif
/* parse the command line arguments */
if( parseArgs( argc, argv ) < 0 )