From d2cb24636562ae6ad4c582e85f9edf6d46a3f486 Mon Sep 17 00:00:00 2001 From: Igor Ryzhov Date: Wed, 23 Jun 2021 15:39:56 +0300 Subject: [PATCH] isisd: fix extra space in the mpls-te config output Signed-off-by: Igor Ryzhov (cherry picked from commit dab1fb8dc8613378b7b6aec0c75a35fd7e807bd4) --- isisd/isis_cli.c | 4 ++-- 1 file 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)); } -- 2.39.5