From 5fdb35a3bc788699a9af03fdc01282261f672829 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 5 Apr 2026 21:14:45 +0200 Subject: [PATCH] curl_setup.h: drop stray/unused `USE_OPENSSL_QUIC` guard Follow-up to 6aaac9dd388a64d0f511544496608693e1105d13 #20226 Closes #21235 --- lib/curl_setup.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/curl_setup.h b/lib/curl_setup.h index 3042bba346..ed5c48dac5 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -1522,9 +1522,7 @@ int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf, #define USE_HTTP2 #endif -#if (defined(USE_NGTCP2) && defined(USE_NGHTTP3)) || \ - (defined(USE_OPENSSL_QUIC) && defined(USE_NGHTTP3)) || \ - defined(USE_QUICHE) +#if (defined(USE_NGTCP2) && defined(USE_NGHTTP3)) || defined(USE_QUICHE) #ifdef CURL_WITH_MULTI_SSL #error "MultiSSL combined with QUIC is not supported"