From 5fa633e22f8f96db896de7b02d3798ec012305f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Tue, 23 May 2023 11:36:49 +0200 Subject: [PATCH] MINOR: quic: Align "show quic" command help information Align the "show quic" help information with all the others command help information. Furthermore, makes this information match the management documentation. Must be backported to 2.7. --- src/quic_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_conn.c b/src/quic_conn.c index a002555d5..1048e569d 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -8970,7 +8970,7 @@ static void cli_release_show_quic(struct appctx *appctx) } static struct cli_kw_list cli_kws = {{ }, { - { { "show", "quic", NULL }, "show quic : display quic connections status", cli_parse_show_quic, cli_io_handler_dump_quic, cli_release_show_quic }, + { { "show", "quic", NULL }, "show quic [] [all] : display quic connections status", cli_parse_show_quic, cli_io_handler_dump_quic, cli_release_show_quic }, {{},} }};