summaryrefslogtreecommitdiff
path: root/isisd/isis_cli.c
diff options
context:
space:
mode:
authorDiogo Oliveira <14191454+dorDiogo@users.noreply.github.com>2023-01-26 09:29:51 -0800
committerDiogo Oliveira <14191454+dorDiogo@users.noreply.github.com>2023-02-28 09:54:02 -0800
commit06fbbf293583f5ca647762c49c78ad27192f26dd (patch)
tree0d3879af07be43d1b9f02129759fd0a724991eaf /isisd/isis_cli.c
parentd73b209a42bf9c2dee40f4f49d8b53d45b4a9449 (diff)
isisd,tests,doc: Rename hello padding sometimes to hello padding during-adjacency-formation
Signed-off-by: Diogo Oliveira <14191454+dorDiogo@users.noreply.github.com>
Diffstat (limited to 'isisd/isis_cli.c')
-rw-r--r--isisd/isis_cli.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isisd/isis_cli.c b/isisd/isis_cli.c
index f430ded745..69636e6efc 100644
--- a/isisd/isis_cli.c
+++ b/isisd/isis_cli.c
@@ -2240,7 +2240,7 @@ void cli_show_ip_isis_threeway_shake(struct vty *vty,
* XPath: /frr-interface:lib/interface/frr-isisd:isis/hello/padding
*/
DEFPY_YANG(isis_hello_padding, isis_hello_padding_cmd,
- "[no] isis hello padding [sometimes]$padding_type",
+ "[no] isis hello padding [during-adjacency-formation]$padding_type",
NO_STR
"IS-IS routing protocol\n"
"Type of padding for IS-IS hello packets\n"
@@ -2266,8 +2266,8 @@ void cli_show_ip_isis_hello_padding(struct vty *vty,
if (hello_padding_type == ISIS_HELLO_PADDING_DISABLED)
vty_out(vty, " no");
vty_out(vty, " isis hello padding");
- if (hello_padding_type == ISIS_HELLO_PADDING_SOMETIMES)
- vty_out(vty, " sometimes");
+ if (hello_padding_type == ISIS_HELLO_PADDING_DURING_ADJACENCY_FORMATION)
+ vty_out(vty, " during-adjacency-formation");
vty_out(vty, "\n");
}