]> git.puffer.fish Git - matthieu/frr.git/commitdiff
isisd: fix extra space in the mpls-te config output
authorIgor Ryzhov <iryzhov@nfware.com>
Wed, 23 Jun 2021 12:39:56 +0000 (15:39 +0300)
committerIgor Ryzhov <iryzhov@nfware.com>
Wed, 23 Jun 2021 12:39:56 +0000 (15:39 +0300)
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
isisd/isis_cli.c

index 366d544d1f70b3dc32979d923882a6ccdcc5b43a..ef86d47b2298da0ce935cf90e543ad2251b5c215 100644 (file)
@@ -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));
 }