Skip to content

Commit b418c39

Browse files
onongflorincoras
authored andcommitted
lisp: fix help msg of show eid-table command
The lisp|one show eid-table command's help msg does not display the available options. This patch fixes that. show lisp eid-table [local|remote|eid <eid>] show one eid-table [local|remote|eid <eid>] Type: fix Signed-off-by: Onong Tayeng <otayeng@cisco.com> Change-Id: Id39148db2ff291a7fe859830c1488b69ccd15c05
1 parent 504bcb7 commit b418c39

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/vnet/lisp-cp/lisp_cli.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ lisp_show_eid_table_command_fn (vlib_main_t * vm,
887887
/* *INDENT-OFF* */
888888
VLIB_CLI_COMMAND (lisp_cp_show_eid_table_command) = {
889889
.path = "show lisp eid-table",
890-
.short_help = "Shows EID table",
890+
.short_help = "show lisp eid-table [local|remote|eid <eid>]",
891891
.function = lisp_show_eid_table_command_fn,
892892
};
893893
/* *INDENT-ON* */
@@ -1128,7 +1128,7 @@ lisp_show_eid_table_map_command_fn (vlib_main_t * vm,
11281128
/* *INDENT-OFF* */
11291129
VLIB_CLI_COMMAND (lisp_show_eid_table_map_command) = {
11301130
.path = "show lisp eid-table map",
1131-
.short_help = "show lisp eid-table l2|l3",
1131+
.short_help = "show lisp eid-table map l2|l3",
11321132
.function = lisp_show_eid_table_map_command_fn,
11331133
};
11341134
/* *INDENT-ON* */

src/vnet/lisp-cp/one_cli.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ lisp_show_eid_table_command_fn (vlib_main_t * vm,
12031203
/* *INDENT-OFF* */
12041204
VLIB_CLI_COMMAND (one_cp_show_eid_table_command) = {
12051205
.path = "show one eid-table",
1206-
.short_help = "Shows EID table",
1206+
.short_help = "show one eid-table [local|remote|eid <eid>]",
12071207
.function = lisp_show_eid_table_command_fn,
12081208
};
12091209
/* *INDENT-ON* */
@@ -1670,7 +1670,7 @@ lisp_show_eid_table_map_command_fn (vlib_main_t * vm,
16701670
/* *INDENT-OFF* */
16711671
VLIB_CLI_COMMAND (one_show_eid_table_map_command) = {
16721672
.path = "show one eid-table map",
1673-
.short_help = "show one eid-table l2|l3",
1673+
.short_help = "show one eid-table map l2|l3",
16741674
.function = lisp_show_eid_table_map_command_fn,
16751675
};
16761676
/* *INDENT-ON* */

0 commit comments

Comments
 (0)