diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-07-07 04:13:24 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-07-07 04:13:24 +0000 |
commit | eb242e59a57ba1a2a0a527f7281ec2ce0aa55fd3 (patch) | |
tree | 2b496f6eab99041ca0443cdac5b91ec2817f6781 /usr.sbin | |
parent | d36cdb62b4832faaa44b1971ff9e9113136f29e9 (diff) |
KNF
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospf6d/ospfe.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/ospf6d/ospfe.c b/usr.sbin/ospf6d/ospfe.c index ca4c286e526..e026d150d2a 100644 --- a/usr.sbin/ospf6d/ospfe.c +++ b/usr.sbin/ospf6d/ospfe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.c,v 1.35 2011/07/07 00:36:13 claudio Exp $ */ +/* $OpenBSD: ospfe.c,v 1.36 2011/07/07 04:13:23 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -516,13 +516,13 @@ ospfe_dispatch_rde(int fd, short event, void *bula) * virtual links */ LIST_FOREACH(area, &oeconf->area_list, entry) { - if (area->stub) - continue; - LIST_FOREACH(iface, &area->iface_list, - entry) { - noack += lsa_flood(iface, nbr, - &lsa_hdr, imsg.data); - } + if (area->stub) + continue; + LIST_FOREACH(iface, &area->iface_list, + entry) { + noack += lsa_flood(iface, nbr, + &lsa_hdr, imsg.data); + } } } else if (lsa_hdr.type == htons(LSA_TYPE_LINK)) { /* |