diff options
author | Ignas Bacius <ignas@noia.network> | 2019-10-10 16:14:47 +0300 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-10-27 10:07:34 +0000 |
commit | 461100061fcc3551bef2b2ddb4b8deeb41625bd1 (patch) | |
tree | d874561e9ef5a2e9fd01bf0f59d9bea81c0cb229 /src/vnet | |
parent | 30f7e41987960a9e94ec79f12e31b7de788e7100 (diff) |
ipip: fix typos in short_help
Type: fix
Signed-off-by: Ignas Bacius <ignas@noia.network>
Change-Id: Ica069e8c9dd4efd1f00639754da471bf11418b57
(cherry picked from commit 3d93ad9f33c8743ba3a6d3babdd1d25fdfbf0c6e)
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ipip/ipip_cli.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/ipip/ipip_cli.c b/src/vnet/ipip/ipip_cli.c index 444b383975b..58f5b1c3039 100644 --- a/src/vnet/ipip/ipip_cli.c +++ b/src/vnet/ipip/ipip_cli.c @@ -160,7 +160,7 @@ VLIB_CLI_COMMAND(create_ipip_tunnel_command, static) = { }; VLIB_CLI_COMMAND(delete_ipip_tunnel_command, static) = { .path = "delete ipip tunnel", - .short_help = "delete ipip tunnel sw_if_index <sw_if_index ", + .short_help = "delete ipip tunnel sw_if_index <sw_if_index>", .function = delete_ipip_tunnel_command_fn, }; /* *INDENT-ON* */ @@ -345,13 +345,13 @@ done: VLIB_CLI_COMMAND(create_sixrd_tunnel_command, static) = { .path = "create 6rd tunnel", .short_help = "create 6rd tunnel ip6-pfx <ip6-pfx> ip4-pfx <ip4-pfx> " - "ip4-src <ip4-addr> ip4-table-id <ID> ip6-table-id <ID>" + "ip4-src <ip4-addr> ip4-table-id <ID> ip6-table-id <ID> " "[security-check]", .function = create_sixrd_tunnel_command_fn, }; VLIB_CLI_COMMAND(delete_sixrd_tunnel_command, static) = { .path = "delete 6rd tunnel", - .short_help = "delete 6rd tunnel sw_if_index <sw_if_index", + .short_help = "delete 6rd tunnel sw_if_index <sw_if_index>", .function = delete_sixrd_tunnel_command_fn, }; /* *INDENT-ON* */ |