From: Willy Tarreau Date: Fri, 18 Feb 2022 15:26:36 +0000 (+0100) Subject: CLEANUP: httpclient/cli: fix indentation alignment of the help message X-Git-Tag: v2.6-dev2~109 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c8f984441e4b8875e2af306d00e1d00755f8ef7;p=thirdparty%2Fhaproxy.git CLEANUP: httpclient/cli: fix indentation alignment of the help message The output was not aligned with other commands, let's fix it. --- diff --git a/src/http_client.c b/src/http_client.c index 6df1226c8a..d2e23fff50 100644 --- a/src/http_client.c +++ b/src/http_client.c @@ -236,7 +236,7 @@ static void hc_cli_release(struct appctx *appctx) /* register cli keywords */ static struct cli_kw_list cli_kws = {{ },{ - { { "httpclient", NULL }, "httpclient : launch an HTTP request", hc_cli_parse, hc_cli_io_handler, hc_cli_release, NULL, ACCESS_EXPERT}, + { { "httpclient", NULL }, "httpclient : launch an HTTP request", hc_cli_parse, hc_cli_io_handler, hc_cli_release, NULL, ACCESS_EXPERT}, { { NULL }, NULL, NULL, NULL } }};