summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_tserver.c
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-02-23 05:02:29 +0000
committerHugo Landau <hlandau@openssl.org>2023-03-30 11:14:10 +0100
commitc4208a6a983278316c6615980f335f685c0be472 (patch)
treed12b534e6eba7783cd08a9bbed9584e7d0ab6ef6 /ssl/quic/quic_tserver.c
parent1dd04a0fe2ffc4104db5198543ed0ec5895e9651 (diff)
QUIC Thread Assisted Mode: Fix typos and use of CRYPTO_RWLOCK type
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20348)
Diffstat (limited to 'ssl/quic/quic_tserver.c')
-rw-r--r--ssl/quic/quic_tserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_tserver.c b/ssl/quic/quic_tserver.c
index 27addc9be5..a0660458d4 100644
--- a/ssl/quic/quic_tserver.c
+++ b/ssl/quic/quic_tserver.c
@@ -25,7 +25,7 @@ struct quic_tserver_st {
QUIC_CHANNEL *ch;
/* The mutex we give to the QUIC channel. */
- CRYPTO_RWLOCK *mutex;
+ CRYPTO_MUTEX *mutex;
/* SSL_CTX for creating the underlying TLS connection */
SSL_CTX *ctx;