]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: httpclient/cli: fix indentation alignment of the help message
authorWilly Tarreau <w@1wt.eu>
Fri, 18 Feb 2022 15:26:36 +0000 (16:26 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 18 Feb 2022 15:29:50 +0000 (16:29 +0100)
The output was not aligned with other commands, let's fix it.

src/http_client.c

index 6df1226c8acf28765ec66d9e7c1056ca06fd394e..d2e23fff50bd4aaa9045180932523a882a19c9ba 100644 (file)
@@ -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 <method> <URI>   : launch an HTTP request", hc_cli_parse, hc_cli_io_handler, hc_cli_release,  NULL, ACCESS_EXPERT},
+       { { "httpclient", NULL }, "httpclient <method> <URI>               : launch an HTTP request", hc_cli_parse, hc_cli_io_handler, hc_cli_release,  NULL, ACCESS_EXPERT},
        { { NULL }, NULL, NULL, NULL }
 }};