From: Amaury Denoyelle Date: Fri, 21 May 2021 09:01:10 +0000 (+0200) Subject: MINOR: ssl: fix typo in usage for 'new ssl ca-file' X-Git-Tag: v2.5-dev1~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b11ad9ed6194fb2edb035a4eb2bc4db4011db4fc;p=thirdparty%2Fhaproxy.git MINOR: ssl: fix typo in usage for 'new ssl ca-file' Fix the usage for the command new ssl ca-file, which has a missing '-' dash separator. --- diff --git a/src/ssl_ckch.c b/src/ssl_ckch.c index 1ca18843d7..b9cddf20d7 100644 --- a/src/ssl_ckch.c +++ b/src/ssl_ckch.c @@ -3689,7 +3689,7 @@ static struct cli_kw_list cli_kws = {{ },{ { { "del", "ssl", "cert", NULL }, "del ssl cert : delete an unused certificate file", cli_parse_del_cert, NULL, NULL }, { { "show", "ssl", "cert", NULL }, "show ssl cert [] : display the SSL certificates used in memory, or the details of a file", cli_parse_show_cert, cli_io_handler_show_cert, cli_release_show_cert }, - { { "new", "ssl", "ca-file", NULL }, "new ssl cafile : create a new CA file to be used in a crt-list", cli_parse_new_cafile, NULL, NULL }, + { { "new", "ssl", "ca-file", NULL }, "new ssl ca-file : create a new CA file to be used in a crt-list", cli_parse_new_cafile, NULL, NULL }, { { "set", "ssl", "ca-file", NULL }, "set ssl ca-file : replace a CA file", cli_parse_set_cafile, NULL, NULL }, { { "commit", "ssl", "ca-file", NULL }, "commit ssl ca-file : commit a CA file", cli_parse_commit_cafile, cli_io_handler_commit_cafile_crlfile, cli_release_commit_cafile }, { { "abort", "ssl", "ca-file", NULL }, "abort ssl ca-file : abort a transaction for a CA file", cli_parse_abort_cafile, NULL, NULL },