From 2c8f984441e4b8875e2af306d00e1d00755f8ef7 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 18 Feb 2022 16:26:36 +0100 Subject: [PATCH] CLEANUP: httpclient/cli: fix indentation alignment of the help message The output was not aligned with other commands, let's fix it. --- 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 6df1226c8..d2e23fff5 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 } }};