From 9ff95e2269e67337975fb1891279e399efe0495a Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Wed, 4 May 2022 13:52:29 +0200 Subject: [PATCH] MINOR: httpclient: rename dash by dot in global option Rename the httpclient-ssl-verify into httpclient.ssl.verify. --- src/http_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, }}; -- 2.47.3