summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfd/rde.c
diff options
context:
space:
mode:
authornorby <norby@openbsd.org>2007-10-01 08:35:12 +0000
committernorby <norby@openbsd.org>2007-10-01 08:35:12 +0000
commit72c35bef95a0f0c1b43656c5529edf5c188927d6 (patch)
treefa03256f28bc97cdefb14b0ebf675904bf19e429 /usr.sbin/ospfd/rde.c
parentMore easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'. (diff)
downloadwireguard-openbsd-72c35bef95a0f0c1b43656c5529edf5c188927d6.tar.xz
wireguard-openbsd-72c35bef95a0f0c1b43656c5529edf5c188927d6.zip
fix alot of whitespace problems...
Diffstat (limited to 'usr.sbin/ospfd/rde.c')
-rw-r--r--usr.sbin/ospfd/rde.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ospfd/rde.c b/usr.sbin/ospfd/rde.c
index 35426f5b7b9..02e5cc06503 100644
--- a/usr.sbin/ospfd/rde.c
+++ b/usr.sbin/ospfd/rde.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rde.c,v 1.70 2007/09/25 11:25:41 claudio Exp $ */
+/* $OpenBSD: rde.c,v 1.71 2007/10/01 08:35:12 norby Exp $ */
/*
* Copyright (c) 2004, 2005 Claudio Jeker <claudio@openbsd.org>
@@ -718,7 +718,7 @@ void
rde_send_change_kroute(struct rt_node *r)
{
int krcount = 0;
- struct kroute kr;
+ struct kroute kr;
struct rt_nexthop *rn;
struct buf *wbuf;
@@ -1046,7 +1046,7 @@ rde_asext_get(struct rroute *rr)
struct lsa *
rde_asext_put(struct rroute *rr)
{
- /*
+ /*
* just try to remove the LSA. If the prefix is announced as
* stub net LSA lsa_find() will fail later and nothing will happen.
*/
@@ -1099,7 +1099,7 @@ rde_summary_update(struct rt_node *rte, struct area *area)
if (v == NULL)
v = lsa_find(area, type, rte->prefix.s_addr, rde_router_id());
- /* suppressed/deleted routes are not found in the second lsa_find */
+ /* suppressed/deleted routes are not found in the second lsa_find */
if (v)
v->cost = rte->cost;
}