From: Igor Ryzhov Date: Wed, 23 Jun 2021 12:39:56 +0000 (+0300) Subject: isisd: fix extra space in the mpls-te config output X-Git-Tag: frr-8.0.1~86^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=d2cb24636562ae6ad4c582e85f9edf6d46a3f486;p=matthieu%2Ffrr.git isisd: fix extra space in the mpls-te config output Signed-off-by: Igor Ryzhov (cherry picked from commit dab1fb8dc8613378b7b6aec0c75a35fd7e807bd4) --- 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)); }