summaryrefslogtreecommitdiffstats
path: root/zebra
diff options
context:
space:
mode:
authorßingen <bingen@voltanet.io>2017-07-10 22:52:16 +0200
committerßingen <bingen@voltanet.io>2017-07-10 22:52:16 +0200
commit62b3c03f53e2a702410cd2aeb430899d2b50041c (patch)
tree7ff7626c63083deb2e469cfb9003c05c754319b7 /zebra
parentRemove recursive param from netlink_route_info_add (diff)
downloadfrr-62b3c03f53e2a702410cd2aeb430899d2b50041c.tar.xz
frr-62b3c03f53e2a702410cd2aeb430899d2b50041c.zip
Avoid to make indentation even worse
Diffstat (limited to 'zebra')
-rw-r--r--zebra/zebra_vty.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c
index 182223b05..7f4754fcc 100644
--- a/zebra/zebra_vty.c
+++ b/zebra/zebra_vty.c
@@ -720,12 +720,12 @@ vty_show_ip_route_detail (struct vty *vty, struct route_node *rn, int mcast)
}
for (ALL_NEXTHOPS(re->nexthop, nexthop))
- {
+ {
char addrstr[32];
vty_out (vty, " %c%s",
- CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB) ? '*' : ' ',
- nexthop->rparent ? " " : "");
+ CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB) ? '*' : ' ',
+ nexthop->rparent ? " " : "");
switch (nexthop->type)
{
@@ -983,9 +983,9 @@ vty_show_ip_route (struct vty *vty, struct route_node *rn, struct route_entry *r
}
else
vty_out (vty, " %c%*c",
- CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)
- ? '*' : ' ',
- len - 3 + (2 * (nexthop->rparent ? 1 : 0)), ' ');
+ CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)
+ ? '*' : ' ',
+ len - 3 + (2 * (nexthop->rparent ? 1 : 0)), ' ');
switch (nexthop->type)
{