From 52020eabe61a5cd94b577f43249859e18dfc370a Mon Sep 17 00:00:00 2001 From: Igor Ryzhov Date: Wed, 24 Mar 2021 10:30:36 +0300 Subject: [PATCH] isisd: fix extra space after "ip router isis" Signed-off-by: Igor Ryzhov (cherry picked from commit 2ba0884a65c3146676fac3357fe6b8b86b636256) --- isisd/isis_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isisd/isis_cli.c b/isisd/isis_cli.c index 7d676c7caf..5a6dc84a27 100644 --- a/isisd/isis_cli.c +++ b/isisd/isis_cli.c @@ -392,7 +392,7 @@ void cli_show_ip_isis_ipv4(struct vty *vty, struct lyd_node *dnode, if (!yang_dnode_get_bool(dnode, NULL)) vty_out(vty, " no"); - vty_out(vty, " ip router isis %s ", + vty_out(vty, " ip router isis %s", yang_dnode_get_string(dnode, "../area-tag")); if (!strmatch(vrf, VRF_DEFAULT_NAME)) vty_out(vty, " vrf %s", vrf); -- 2.39.5