summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-03-28 09:00:13 +0000
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:33:09 +0100
commit96b572ffd4beaaca5bf924fc5b41560d98a29d93 (patch)
tree4cee5927e0ff14a19f7ffc6cee563e1c11b9150a
parentfc6e5374bc980790112e18339dbb13645b207dfb (diff)
QUIC APL: Revise SSL_pending and SSL_has_pending handling for s_client compat
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23995)
-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 25095a31e3..9c3d1e89b4 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -2645,7 +2645,7 @@ int ossl_quic_write_flags(SSL *s, const void *buf, size_t len,
if (!expect_quic(s, &ctx))
return 0;
- quic_lock_for_io(&ctx);
+ qctx_lock_for_io(&ctx);
} else {
if (!expect_quic_with_stream_lock(s, /*remote_init=*/0, /*io=*/1, &ctx))
return 0;