From 016f3d152c7794fc6ca33b907778816d2891be00 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 11 Oct 2020 02:30:04 +0000 Subject: Update regress for method changes. --- src/regress/lib/libssl/server/servertest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/regress/lib/libssl/server/servertest.c b/src/regress/lib/libssl/server/servertest.c index 7a0caefc2b..d6f2039af1 100644 --- a/src/regress/lib/libssl/server/servertest.c +++ b/src/regress/lib/libssl/server/servertest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: servertest.c,v 1.3 2020/05/11 18:18:21 jsing Exp $ */ +/* $OpenBSD: servertest.c,v 1.4 2020/10/11 02:30:04 jsing Exp $ */ /* * Copyright (c) 2015, 2016, 2017 Joel Sing * @@ -25,7 +25,7 @@ #include #include -const SSL_METHOD *tls_legacy_server_method(void); +const SSL_METHOD *tls_legacy_method(void); char *server_ca_file; char *server_cert_file; @@ -91,7 +91,7 @@ static struct server_hello_test server_hello_tests[] = { .desc = "TLSv1.0 in SSLv2 record", .client_hello = sslv2_client_hello_tls10, .client_hello_len = sizeof(sslv2_client_hello_tls10), - .ssl_method = tls_legacy_server_method, + .ssl_method = tls_legacy_method, .ssl_clear_options = SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1, .ssl_set_options = 0, }, @@ -99,7 +99,7 @@ static struct server_hello_test server_hello_tests[] = { .desc = "TLSv1.2 in SSLv2 record", .client_hello = sslv2_client_hello_tls12, .client_hello_len = sizeof(sslv2_client_hello_tls12), - .ssl_method = tls_legacy_server_method, + .ssl_method = tls_legacy_method, .ssl_clear_options = SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1, .ssl_set_options = 0, }, -- cgit v1.2.3-55-g6feb