From 259b1e1c18b2daeede208fb86a43746ff18f2391 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Fri, 24 Oct 2025 13:49:23 +0200 Subject: [PATCH] MEDIUM: quic: Fix build with openssl-compat As the QUIC options have been split into backend and frontend, there is no more GTUNE_QUIC_LISTEN_OFF to be found in global.tune.options, look for QUIC_TUNE_FE_LISTEN_OFF in quic_tune.fe instead. This should fix the build with USE_QUIC and USE_QUIC_OPENSSL_COMPAT. --- src/cfgparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfgparse.c b/src/cfgparse.c index de1b03e5a..5a7ec7405 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c @@ -4312,7 +4312,7 @@ init_proxies_list_stage2: # ifdef USE_QUIC_OPENSSL_COMPAT /* store the last checked bind_conf in bind_conf */ - if (!(global.tune.options & GTUNE_QUIC_LISTEN_OFF) && + if (!(quic_tune.fe.opts & QUIC_TUNE_FE_LISTEN_OFF) && !(global.tune.options & GTUNE_LIMITED_QUIC) && listener->bind_conf != bind_conf) { bind_conf = listener->bind_conf;