aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohsin Kazmi <sykazmi@cisco.com>2023-01-26 15:14:17 +0000
committerDamjan Marion <dmarion@0xa5.net>2023-03-06 17:21:40 +0000
commit88d9414e82e2106066047d58c5f0865f3df22ea3 (patch)
tree6dc6e03b7262aec5bd52ffcee5686275802604f6
parent063549f9605c018618670ecb6c5bbbdbedd62c04 (diff)
interface: add the missing tag keyword in the cli helper
Type: style Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com> Change-Id: I6399ad2b0b30f94c6c51db1afc39f5e875dfaa67
-rw-r--r--src/vnet/interface_cli.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/interface_cli.c b/src/vnet/interface_cli.c
index e5122c8551f..627af6f2b0d 100644
--- a/src/vnet/interface_cli.c
+++ b/src/vnet/interface_cli.c
@@ -517,7 +517,8 @@ done:
/* *INDENT-OFF* */
VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
.path = "show interface",
- .short_help = "show interface [address|addr|features|feat|vtr] [<interface> [<interface> [..]]] [verbose]",
+ .short_help = "show interface [address|addr|features|feat|vtr|tag] "
+ "[<interface> [<interface> [..]]] [verbose]",
.function = show_sw_interfaces,
.is_mp_safe = 1,
};