From: Christopher Faulet Date: Tue, 10 Mar 2026 17:50:36 +0000 (+0100) Subject: MINOR: config: Report the warning when invalid large buffer size is set X-Git-Tag: v3.4-dev8~133 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=41c89e4fb6b118af29c73a748f1cd78d9d338655;p=haproxy.git MINOR: config: Report the warning when invalid large buffer size is set When an invalid large buffer size was found in the configuration, a warning was emitted but it was not reported via the error code. It is now fixed. --- diff --git a/src/cfgparse.c b/src/cfgparse.c index 2b415db03..0969fe014 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c @@ -2319,6 +2319,7 @@ int check_config_validity() "Please fix either value to remove this warning.\n", global.tune.bufsize_large, global.tune.bufsize); global.tune.bufsize_large = 0; + err_code |= ERR_WARN; } }