From: Matt Caswell Date: Tue, 28 Feb 2017 12:47:42 +0000 (+0000) Subject: Remove some commented out code in the tests X-Git-Tag: OpenSSL_1_1_1-pre1~2221 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a633f2675ec7d031e879703c0b3dee2185bf44da;p=oweals%2Fopenssl.git Remove some commented out code in the tests Reviewed-by: Richard Levitte Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/2774) --- diff --git a/test/ssltest_old.c b/test/ssltest_old.c index 649215d9b7..055014bb12 100644 --- a/test/ssltest_old.c +++ b/test/ssltest_old.c @@ -1384,8 +1384,6 @@ int main(int argc, char *argv[]) "Warning: For accurate timings, use more connections (e.g. -num 1000)\n"); } -/* if (cipher == NULL) cipher=getenv("SSL_CIPHER"); */ - #ifndef OPENSSL_NO_COMP if (comp == COMP_ZLIB) cm = COMP_zlib(); @@ -1538,9 +1536,7 @@ int main(int argc, char *argv[]) (!SSL_CTX_set_default_verify_paths(s_ctx2)) || (!SSL_CTX_load_verify_locations(c_ctx, CAfile, CApath)) || (!SSL_CTX_set_default_verify_paths(c_ctx))) { - /* fprintf(stderr,"SSL_load_verify_locations\n"); */ ERR_print_errors(bio_err); - /* goto end; */ } #ifndef OPENSSL_NO_CT @@ -2702,22 +2698,12 @@ int doit(SSL *s_ssl, SSL *c_ssl, long count) if (SSL_in_init(s_ssl)) printf("server waiting in SSL_accept - %s\n", SSL_state_string_long(s_ssl)); -/*- - else if (s_write) - printf("server:SSL_write()\n"); - else - printf("server:SSL_read()\n"); */ } if (do_client && debug) { if (SSL_in_init(c_ssl)) printf("client waiting in SSL_connect - %s\n", SSL_state_string_long(c_ssl)); -/*- - else if (c_write) - printf("client:SSL_write()\n"); - else - printf("client:SSL_read()\n"); */ } if (!do_client && !do_server) {