From 739d2bdfba536ff59e8444eb4295b53288ac5caf Mon Sep 17 00:00:00 2001 From: Todd Short Date: Fri, 25 Mar 2022 13:34:11 -0400 Subject: [PATCH] Fix: ticket_lifetime_hint may exceed 1 week in TLSv1.3 libctx was left in cherry-pick from master/3.0 cherry-pick Reviewed-by: Matt Caswell Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/17970) --- test/sslapitest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sslapitest.c b/test/sslapitest.c index 09a732f5771..a322f21d335 100644 --- a/test/sslapitest.c +++ b/test/sslapitest.c @@ -6754,7 +6754,7 @@ static int test_ticket_lifetime(int idx) version = TLS1_2_VERSION; } - if (!TEST_true(create_ssl_ctx_pair(libctx, TLS_server_method(), + if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(), version, version, &sctx, &cctx, cert, privkey))) goto end; -- 2.47.3