From 8d8eaccccf2ee9c799b25db3153dbbc60cce8dc1 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Wed, 11 Mar 2026 09:35:40 +0000 Subject: [PATCH] Fix incorrect compile guard --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index c742f942..05627df4 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1350,7 +1350,7 @@ static int config__read_file_core(struct mosquitto__config *config, bool reload, log__printf(NULL, MOSQ_LOG_WARNING, "Warning: Bridge and/or TLS support not available."); #endif }else if(!strcmp(token, "bridge_bind_address")){ -#if defined(WITH_BRIDGE) && defined(WITH_TLS) +#if defined(WITH_BRIDGE) REQUIRE_BRIDGE(token); if(conf__parse_string(&token, "bridge_bind_address", &cur_bridge->bind_address, &saveptr)){ return MOSQ_ERR_INVAL;