diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2021-06-26 01:34:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-26 01:34:41 +0200 |
commit | 32694c41bb298075c19b2cd50525bee3a336ccec (patch) | |
tree | e0a3cffbae03aeb60aa1e988dc55e47cee4f7ddd /isisd | |
parent | Merge pull request #8926 from opensourcerouting/ospfv3-nssa-typo (diff) | |
parent | isisd: fix extra space in the mpls-te config output (diff) | |
download | frr-32694c41bb298075c19b2cd50525bee3a336ccec.tar.xz frr-32694c41bb298075c19b2cd50525bee3a336ccec.zip |
Merge pull request #8909 from idryzhov/isis-conf
isisd: fix extra space in the mpls-te config output
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/isis_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_cli.c b/isisd/isis_cli.c index 366d544d1..ef86d47b2 100644 --- a/isisd/isis_cli.c +++ b/isisd/isis_cli.c @@ -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)); } |