From: Hugo Landau Date: Thu, 28 Mar 2024 09:00:13 +0000 (+0000) Subject: QUIC APL: Revise SSL_pending and SSL_has_pending handling for s_client compat X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd73636f449e49690051363426307493efccc638;p=thirdparty%2Fopenssl.git QUIC APL: Revise SSL_pending and SSL_has_pending handling for s_client compat Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23995) --- diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c index 10c1ee859e7..1baee34a1e5 100644 --- a/ssl/quic/quic_impl.c +++ b/ssl/quic/quic_impl.c @@ -2647,7 +2647,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;