aboutsummaryrefslogtreecommitdiff
path: root/test/quicapitest.c
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-02-15 08:55:36 +0000
committerHugo Landau <hlandau@openssl.org>2024-03-07 23:48:49 +0000
commit4b4b9c9eb3e677de6276c94758cb554c8f560697 (patch)
treeb2781d797fb0126a913e435944d947305682eb54 /test/quicapitest.c
parent02f5ab77854647e4f34cdd340d57bb071afb997d (diff)
downloadopenssl-4b4b9c9eb3e677de6276c94758cb554c8f560697.zip
openssl-4b4b9c9eb3e677de6276c94758cb554c8f560697.tar.gz
openssl-4b4b9c9eb3e677de6276c94758cb554c8f560697.tar.bz2
QUIC: Uniform changes for QUIC error code definitions rename
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23598)
Diffstat (limited to 'test/quicapitest.c')
-rw-r--r--test/quicapitest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/quicapitest.c b/test/quicapitest.c
index 90a418e..098e1a9 100644
--- a/test/quicapitest.c
+++ b/test/quicapitest.c
@@ -2047,7 +2047,7 @@ static int test_tparam(int idx)
goto err;
if (!TEST_true((info.flags & SSL_CONN_CLOSE_FLAG_TRANSPORT) != 0)
- || !TEST_uint64_t_eq(info.error_code, QUIC_ERR_TRANSPORT_PARAMETER_ERROR)
+ || !TEST_uint64_t_eq(info.error_code, OSSL_QUIC_ERR_TRANSPORT_PARAMETER_ERROR)
|| !TEST_ptr(strstr(info.reason, ctx.t->expect_fail))) {
TEST_error("expected connection closure information mismatch"
" during TPARAM test: flags=%llu ec=%llu reason='%s'",