diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2019-02-14 23:00:15 +0100 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2019-02-15 01:57:39 +0100 |
commit | 7dce96f0e413e1c6c9d1d68196716e0343c14f6a (patch) | |
tree | 9c4129a1e9e435e2abfb687a131c4fbf3af4cd64 /lib | |
parent | pbrd: change the "set nexthop" command to accept interface nexthops (diff) | |
download | frr-7dce96f0e413e1c6c9d1d68196716e0343c14f6a.tar.xz frr-7dce96f0e413e1c6c9d1d68196716e0343c14f6a.zip |
lib, pbrd: fix indentation of a few commands
When displaying the running configuration, we should use a single
space to indent commands when necessary (and not two spaces).
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/nexthop_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nexthop_group.c b/lib/nexthop_group.c index d8cabf62b..bf298c6de 100644 --- a/lib/nexthop_group.c +++ b/lib/nexthop_group.c @@ -520,7 +520,7 @@ static int nexthop_group_write(struct vty *vty) vty_out(vty, "nexthop-group %s\n", nhgc->name); for (ALL_LIST_ELEMENTS_RO(nhgc->nhg_list, node, nh)) { - vty_out(vty, " "); + vty_out(vty, " "); nexthop_group_write_nexthop_internal(vty, nh); } |