From: Valentine Krasnobaeva Date: Wed, 14 Aug 2024 18:05:58 +0000 (+0200) Subject: BUG/MINOR: cfgparse-global: remove tune.fast-forward from common_kw_list X-Git-Tag: v3.1-dev6~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e6e159ac47468b6b65e9678c9e4d1fe746165e8;p=thirdparty%2Fhaproxy.git BUG/MINOR: cfgparse-global: remove tune.fast-forward from common_kw_list Remove tune.fast-forward from common_kw_list. It was replaced by 'tune.disable-fast-forward' and it's no longer present in "if..else if.." parser from cfg_parse_global(). Otherwise, it may be shown as the best-match keyword for some tune options, which is now wrong. Should be backported in versions 2.9 and 3.0. --- diff --git a/src/cfgparse-global.c b/src/cfgparse-global.c index 6f80b65717..3a59824cbd 100644 --- a/src/cfgparse-global.c +++ b/src/cfgparse-global.c @@ -33,8 +33,7 @@ int cluster_secret_isset; static const char *common_kw_list[] = { "global", "busy-polling", "set-dumpable", "insecure-fork-wanted", "insecure-setuid-wanted", "nosplice", - "nogetaddrinfo", "noreuseport", - "tune.fast-forward", "uid", "gid", + "nogetaddrinfo", "noreuseport", "uid", "gid", "external-check", "user", "group", "maxconn", "ssl-server-verify", "maxconnrate", "maxsessrate", "maxsslrate", "maxcomprate", "maxpipes", "maxzlibmem", "maxcompcpuusage", "ulimit-n",