From: Hugo Landau Date: Thu, 3 Aug 2023 08:17:36 +0000 (+0100) Subject: QUIC: Fix incompatible merges causing CI breakage X-Git-Tag: openssl-3.2.0-alpha1~319 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e7cc86b7516bb035b91c23a38f2d9e6323d33c9;p=thirdparty%2Fopenssl.git QUIC: Fix incompatible merges causing CI breakage Reviewed-by: Tom Cosgrove Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/21641) --- 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;