summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-04-18 19:37:49 +0100
committerHugo Landau <hlandau@openssl.org>2023-05-12 14:47:13 +0100
commit571aff4bfaf0407cadba2e304b60c0364684cee5 (patch)
treed3e6b509c04a1465f9836a9ea43ae22e89a3c6ee /test
parented835673ae5d99cac39d0bef6677597a68d1e248 (diff)
downloadopenssl-new-571aff4bfaf0407cadba2e304b60c0364684cee5.tar.gz
Minor fixups
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20765)
Diffstat (limited to 'test')
-rw-r--r--test/quic_multistream_test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/quic_multistream_test.c b/test/quic_multistream_test.c
index 1b15c1d16e..78b3ffe1d8 100644
--- a/test/quic_multistream_test.c
+++ b/test/quic_multistream_test.c
@@ -299,7 +299,6 @@ static int helper_init(struct helper *h)
s_args.net_rbio = h->s_net_bio;
s_args.net_wbio = h->s_net_bio;
- //s_args.now_cb = ...;
if (!TEST_ptr(h->s = ossl_quic_tserver_new(&s_args, certfile, keyfile)))
goto err;
@@ -849,7 +848,7 @@ static int run_script(const struct script_op *script)
case OPK_C_WRITE_FAIL:
{
- uint64_t bytes_written = 0;
+ size_t bytes_written = 0;
if (!TEST_ptr(c_tgt))
goto out;
@@ -875,7 +874,7 @@ static int run_script(const struct script_op *script)
case OPK_C_READ_FAIL:
{
- uint64_t bytes_read = 0;
+ size_t bytes_read = 0;
char buf[1];
if (!TEST_ptr(c_tgt))