From 0596357584834628a30342351959aad690d4874c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 11 Jan 2026 10:50:19 +0100 Subject: [PATCH] wolfssl: fix build without USE_BIO_CHAIN Reported-by: Megamouse on github Fixes #20250 Closes #20251 --- lib/vtls/wolfssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c index 510378886d..34dfd331ae 100644 --- a/lib/vtls/wolfssl.c +++ b/lib/vtls/wolfssl.c @@ -401,7 +401,7 @@ static void wssl_bio_cf_free_methods(void) #else /* USE_BIO_CHAIN */ -#define wssl_bio_cf_init_methods() Curl_nop_stmt +#define wssl_bio_cf_init_methods() TRUE #define wssl_bio_cf_free_methods() Curl_nop_stmt #endif /* !USE_BIO_CHAIN */