summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-30 16:48:45 +0100
committerHugo Landau <hlandau@openssl.org>2023-09-01 14:02:54 +0100
commit7b1ca59995a0d0ad933b5d475face79b8ec99828 (patch)
tree50e3bae388d6089bc9a027b033a14a1007efeb5e
parente24f784b0c3be754b2114902ca3d8ec8e67711dc (diff)
Fix after rebase
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21905)
-rw-r--r--ssl/quic/quic_impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index 7dfe25c916..ec18a9f6c8 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -2817,7 +2817,7 @@ int ossl_quic_is_stream_local(SSL *s)
QCTX ctx;
int is_local;
- if (!expect_quic_with_stream_lock(s, /*remote_init=*/-1, &ctx))
+ if (!expect_quic_with_stream_lock(s, /*remote_init=*/-1, /*io=*/0, &ctx))
return -1;
is_local = ossl_quic_stream_is_local_init(ctx.xso->stream);