From 1e7cc86b7516bb035b91c23a38f2d9e6323d33c9 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Thu, 3 Aug 2023 09:17:36 +0100 Subject: [PATCH] QUIC: Fix incompatible merges causing CI breakage Reviewed-by: Tom Cosgrove Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/21641) --- test/quicapitest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/quicapitest.c b/test/quicapitest.c index c694988d830..cb5e00d0a8f 100644 --- a/test/quicapitest.c +++ b/test/quicapitest.c @@ -808,9 +808,9 @@ static int test_back_pressure(void) int i; if (!TEST_ptr(cctx) - || !TEST_true(qtest_create_quic_objects(libctx, cctx, cert, privkey, - 0, &qtserv, &clientquic, - NULL)) + || !TEST_true(qtest_create_quic_objects(libctx, cctx, NULL, cert, + privkey, 0, &qtserv, + &clientquic, NULL)) || !TEST_true(qtest_create_quic_connection(qtserv, clientquic))) goto err; -- 2.47.2