=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/s_client.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- src/usr.bin/openssl/s_client.c 2015/04/14 12:56:36 1.13 +++ src/usr.bin/openssl/s_client.c 2015/07/17 16:07:44 1.14 @@ -1,4 +1,4 @@ -/* $OpenBSD: s_client.c,v 1.13 2015/04/14 12:56:36 jsing Exp $ */ +/* $OpenBSD: s_client.c,v 1.14 2015/07/17 16:07:44 doug Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -223,7 +223,6 @@ BIO_printf(bio_err, " -quiet - no s_client output\n"); BIO_printf(bio_err, " -ign_eof - ignore input eof (default when -quiet)\n"); BIO_printf(bio_err, " -no_ign_eof - don't ignore input eof\n"); - BIO_printf(bio_err, " -ssl3 - just use SSLv3\n"); BIO_printf(bio_err, " -tls1_2 - just use TLSv1.2\n"); BIO_printf(bio_err, " -tls1_1 - just use TLSv1.1\n"); BIO_printf(bio_err, " -tls1 - just use TLSv1\n"); @@ -472,8 +471,6 @@ nbio_test = 1; else if (strcmp(*argv, "-state") == 0) state = 1; - else if (strcmp(*argv, "-ssl3") == 0) - meth = SSLv3_client_method(); else if (strcmp(*argv, "-tls1_2") == 0) meth = TLSv1_2_client_method(); else if (strcmp(*argv, "-tls1_1") == 0)