summaryrefslogtreecommitdiffstats
path: root/proto/ospf/ospf.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2000-05-31 16:21:56 +0200
committerOndrej Filip <feela@network.cz>2000-05-31 16:21:56 +0200
commitd1660fd3f38c29739ff36c86c6010d65fb90c608 (patch)
tree6f0ba3a810da517dff7ce5a4fb914dedb62c2739 /proto/ospf/ospf.c
parent70a383198ae08bed395f2a083c1bea5b37447705 (diff)
downloadbird-d1660fd3f38c29739ff36c86c6010d65fb90c608.tar
bird-d1660fd3f38c29739ff36c86c6010d65fb90c608.zip
Sort cleanup in aging.
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r--proto/ospf/ospf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index 701c323..bc9a636 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -162,11 +162,9 @@ area_disp(timer *timer)
{
struct ospf_area *oa=timer->data;
struct top_hash_entry *en,*nxt;
- int flush=0;
/* First of all try to age LSA DB */
- flush=can_flush_lsa(oa);
- WALK_SLIST_DELSAFE(en,nxt,oa->lsal) ospf_age(en,DISPTICK,flush,oa);
+ ospf_age(oa);
/* Now try to originage rt_lsa */
if(oa->origrt) originate_rt_lsa(oa);