From: William Lallemand Date: Wed, 4 May 2022 11:52:29 +0000 (+0200) Subject: MINOR: httpclient: rename dash by dot in global option X-Git-Tag: v2.6-dev9~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ff95e2269e67337975fb1891279e399efe0495a;p=thirdparty%2Fhaproxy.git MINOR: httpclient: rename dash by dot in global option Rename the httpclient-ssl-verify into httpclient.ssl.verify. --- diff --git a/src/http_client.c b/src/http_client.c index ca55c02b0d..c21786ae07 100644 --- a/src/http_client.c +++ b/src/http_client.c @@ -1273,7 +1273,7 @@ static int httpclient_parse_global_verify(char **args, int section_type, struct } static struct cfg_kw_list cfg_kws = {ILH, { - { CFG_GLOBAL, "httpclient-ssl-verify", httpclient_parse_global_verify }, + { CFG_GLOBAL, "httpclient.ssl.verify", httpclient_parse_global_verify }, { 0, NULL, NULL }, }};