From: paul Date: Mon, 7 Apr 2003 04:29:27 +0000 (+0000) Subject: Compile fix - convert foreach_lsa to LSDB_LOOP X-Git-Tag: frr-2.0-rc1~4111 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=f6386eebb95769559d2c828b9b9d70c0ffd23b45;p=mirror%2Ffrr.git Compile fix - convert foreach_lsa to LSDB_LOOP --- diff --git a/ospfd/ospf_ase.c b/ospfd/ospf_ase.c index 3747bc16b0..5605933b50 100644 --- a/ospfd/ospf_ase.c +++ b/ospfd/ospf_ase.c @@ -645,8 +645,8 @@ ospf_ase_calculate_timer (struct thread *t) ospf_ase_calculate_route (ospf, lsa); } /* kevinm: And add the NSSA routes in ospf_top */ - foreach_lsa(NSSA_LSDB (ospf_top), NULL, 0, - ospf_ase_calculate_route); + LSDB_LOOP (NSSA_LSDB (ospf),rn,lsa) + ospf_ase_calculate_route(ospf,lsa); #endif /* HAVE_NSSA */