Merge pull request #8909 from idryzhov/isis-conf

isisd: fix extra space in the mpls-te config output
This commit is contained in:
Donald Sharp 2021-06-25 19:34:41 -04:00 committed by GitHub
commit 32694c41bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1196,7 +1196,7 @@ DEFPY_YANG(no_isis_mpls_te_on, no_isis_mpls_te_on_cmd, "no mpls-te [on]",
void cli_show_isis_mpls_te(struct vty *vty, struct lyd_node *dnode,
bool show_defaults)
{
vty_out(vty, " mpls-te on\n");
vty_out(vty, " mpls-te on\n");
}
/*
@ -1229,7 +1229,7 @@ DEFPY_YANG(no_isis_mpls_te_router_addr, no_isis_mpls_te_router_addr_cmd,
void cli_show_isis_mpls_te_router_addr(struct vty *vty, struct lyd_node *dnode,
bool show_defaults)
{
vty_out(vty, " mpls-te router-address %s\n",
vty_out(vty, " mpls-te router-address %s\n",
yang_dnode_get_string(dnode, NULL));
}