]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: ssl/cli: typo in new ssl crl-file CLI description
authorWilliam Lallemand <wlallemand@haproxy.com>
Tue, 5 Mar 2024 13:49:17 +0000 (14:49 +0100)
committerWilliam Lallemand <wlallemand@haproxy.com>
Tue, 5 Mar 2024 13:49:17 +0000 (14:49 +0100)
The `new ssl crl-file` option description on the CLI lacks the dash.

Must be backported as far as 2.6.

src/ssl_ckch.c

index 5fdb2d57b612d19862f8ac7b1b663ee2dcf43dee..e7ada0252931abb3413c750cb6c46c0c9e71c24d 100644 (file)
@@ -3966,7 +3966,7 @@ static struct cli_kw_list cli_kws = {{ },{
        { { "del", "ssl", "ca-file", NULL },    "del ssl ca-file <cafile>                : delete an unused CA file",                                              cli_parse_del_cafile, NULL, NULL },
        { { "show", "ssl", "ca-file", NULL },   "show ssl ca-file [<cafile>[:<index>]]   : display the SSL CA files used in memory, or the details of a <cafile>, or a single certificate of index <index> of a CA file <cafile>", cli_parse_show_cafile, cli_io_handler_show_cafile, cli_release_show_cafile },
 
-       { { "new", "ssl", "crl-file", NULL },   "new ssl crlfile <crlfile>               : create a new CRL file to be used in a crt-list",                        cli_parse_new_crlfile, NULL, NULL },
+       { { "new", "ssl", "crl-file", NULL },   "new ssl crl-file <crlfile>               : create a new CRL file to be used in a crt-list",                        cli_parse_new_crlfile, NULL, NULL },
        { { "set", "ssl", "crl-file", NULL },   "set ssl crl-file <crlfile> <payload>    : replace a CRL file",                                                    cli_parse_set_crlfile, NULL, NULL },
        { { "commit", "ssl", "crl-file", NULL },"commit ssl crl-file <crlfile>           : commit a CRL file",                                                     cli_parse_commit_crlfile, cli_io_handler_commit_cafile_crlfile, cli_release_commit_crlfile },
        { { "abort", "ssl", "crl-file", NULL }, "abort ssl crl-file <crlfile>            : abort a transaction for a CRL file",                                    cli_parse_abort_crlfile, NULL, NULL },