]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Minor fixes
authorHugo Landau <hlandau@openssl.org>
Mon, 29 Apr 2024 09:20:39 +0000 (10:20 +0100)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:32 +0000 (11:27 -0500)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24971)

ssl/quic/quic_impl.c
ssl/rio/build.info

index ed0fa4ceaa36586da2db16243a82255d8610e77c..cc1f8395530953a061eba770d8396765748ddf6d 100644 (file)
@@ -4308,7 +4308,9 @@ SSL *ossl_quic_new_listener_from(SSL *ssl, uint64_t flags)
 
     ql->domain  = ctx.qd;
     ql->engine  = ctx.qd->engine;
+#if defined(OPENSSL_THREADS)
     ql->mutex   = ctx.qd->mutex;
+#endif
 
     /* TODO(QUIC SERVER): Implement SSL_LISTENER_FLAG_NO_ACCEPT */
 
index 33e0dc13adc26ba410918d07ea08a81c398e00fc..15f93fb07d5e935b84ad0cfe030d436768f85695 100644 (file)
@@ -1,4 +1,6 @@
 $LIBSSL=../../libssl
 
 SOURCE[$LIBSSL]=poll_immediate.c
-SOURCE[$LIBSSL]=rio_notifier.c
+IF[{- !$disabled{quic} -}]
+  SOURCE[$LIBSSL]=rio_notifier.c
+ENDIF