summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-23 08:19:01 +0100
committerMatt Caswell <matt@openssl.org>2023-08-24 11:47:57 +0100
commitce7a9e23fb1ea249e08c3dfa9c9f701a701f2719 (patch)
tree2bfc51315a0e5cec654d11e64e2759f094830bbd /test
parentf430713c8c5e579b513ffa16133b8c178978c5b6 (diff)
QUIC: Rename SSL_set_initial_peer_addr to SSL_set1_initial_peer_addr
Fixes #21701 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21814)
Diffstat (limited to 'test')
-rw-r--r--test/helpers/quictestlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/quictestlib.c b/test/helpers/quictestlib.c
index 1b204658bf..2dbbb435bb 100644
--- a/test/helpers/quictestlib.c
+++ b/test/helpers/quictestlib.c
@@ -146,7 +146,7 @@ int qtest_create_quic_objects(OSSL_LIB_CTX *libctx, SSL_CTX *clientctx,
(flags & QTEST_FLAG_BLOCK) != 0 ? 1 : 0)))
goto err;
- if (!TEST_true(SSL_set_initial_peer_addr(*cssl, peeraddr)))
+ if (!TEST_true(SSL_set1_initial_peer_addr(*cssl, peeraddr)))
goto err;
if (fault != NULL) {