diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2021-06-25 19:34:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-25 19:34:41 -0400 |
| commit | 32694c41bb298075c19b2cd50525bee3a336ccec (patch) | |
| tree | e0a3cffbae03aeb60aa1e988dc55e47cee4f7ddd /isisd/isis_cli.c | |
| parent | 329f4cd3ede413089d7ff470c142cbba378b2968 (diff) | |
| parent | dab1fb8dc8613378b7b6aec0c75a35fd7e807bd4 (diff) | |
Merge pull request #8909 from idryzhov/isis-conf
isisd: fix extra space in the mpls-te config output
Diffstat (limited to 'isisd/isis_cli.c')
| -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 366d544d1f..ef86d47b22 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)); } |
