diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-03-24 10:30:36 +0300 |
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-03-24 10:30:36 +0300 |
| commit | 2ba0884a65c3146676fac3357fe6b8b86b636256 (patch) | |
| tree | b2168b684078975db99abb9982ee3cc889397d4c /isisd/isis_cli.c | |
| parent | 53ab0eacab29eac23285db12ced4d43f079912e3 (diff) | |
isisd: fix extra space after "ip router isis"
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'isisd/isis_cli.c')
| -rw-r--r-- | isisd/isis_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
