diff options
author | Swarup Nayak <swarupnpvt@gmail.com> | 2017-12-06 18:55:43 +0530 |
---|---|---|
committer | Swarup Nayak <swarupnpvt@gmail.com> | 2017-12-07 05:38:00 +0000 |
commit | a3611a70347d870ef4d657e010a1fe736a9fdd72 (patch) | |
tree | c23bfee376f6424e36e7aabc75f4dba2fda7a25c | |
parent | 93fbcc6af9252fda8c261c190b24aaf6c09a38f4 (diff) |
Corrected help string of show ip punt
Change-Id: I32ec3ff341e70ceaa6203df5a9e7c3ffdae20a06
Signed-off-by: Swarup Nayak <swarupnpvt@gmail.com>
-rw-r--r-- | src/vnet/ip/ip4_punt_drop.c | 2 | ||||
-rw-r--r-- | src/vnet/ip/ip6_punt_drop.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/ip/ip4_punt_drop.c b/src/vnet/ip/ip4_punt_drop.c index 72f36f33560..ceb1bb8f251 100644 --- a/src/vnet/ip/ip4_punt_drop.c +++ b/src/vnet/ip/ip4_punt_drop.c @@ -501,7 +501,7 @@ VLIB_CLI_COMMAND (show_ip4_punt_redirect_command, static) = { .path = "show ip punt redirect", .function = ip4_punt_redirect_show_cmd, - .short_help = "show ip punt redirect [add|del] rx [<interface>|all] via [<nh>] <tx_interface>", + .short_help = "show ip punt redirect", .is_mp_safe = 1, }; /* *INDENT-ON* */ diff --git a/src/vnet/ip/ip6_punt_drop.c b/src/vnet/ip/ip6_punt_drop.c index a1f0ebe6901..4c4240ee7a3 100644 --- a/src/vnet/ip/ip6_punt_drop.c +++ b/src/vnet/ip/ip6_punt_drop.c @@ -382,7 +382,7 @@ VLIB_CLI_COMMAND (show_ip6_punt_redirect_command, static) = { .path = "show ip6 punt redirect", .function = ip6_punt_redirect_show_cmd, - .short_help = "show ip6 punt redirect [add|del] rx [<interface>|all] via [<nh>] <tx_interface>", + .short_help = "show ip6 punt redirect", .is_mp_safe = 1, }; /* *INDENT-ON* */ |