From 2ba0884a65c3146676fac3357fe6b8b86b636256 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 --- 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 039483b9b2..b108210686 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);