diff options
author | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
commit | 52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd (patch) | |
tree | a557339540c56dd3953c29a50ca0e48c1911efc8 /ospfd/ospf_flood.c | |
parent | 44983cf8a9c587dfbcad294b9dfe4dccbb68ba98 (diff) |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ospfd/ospf_flood.c')
-rw-r--r-- | ospfd/ospf_flood.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ospfd/ospf_flood.c b/ospfd/ospf_flood.c index b706279e..c1d2131a 100644 --- a/ospfd/ospf_flood.c +++ b/ospfd/ospf_flood.c @@ -116,7 +116,7 @@ ospf_process_self_originated_lsa (struct ospf *ospf, { struct ospf_interface *oi; struct external_info *ei; - listnode node; + struct listnode *node; if (IS_DEBUG_OSPF_EVENT) zlog_info ("LSA[Type%d:%s]: Process self-originated LSA seq 0x%x", @@ -569,7 +569,7 @@ int ospf_flood_through_area (struct ospf_area *area, struct ospf_neighbor *inbr, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; int lsa_ack_flag = 0; /* All other types are specific to a single area (Area A). The @@ -608,7 +608,7 @@ int ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; int lsa_ack_flag; lsa_ack_flag = 0; @@ -632,7 +632,7 @@ ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr, { int continue_flag = 0; struct ospf_area *area = getdata (node); - listnode if_node; + struct listnode *if_node; switch (area->external_routing) { @@ -965,7 +965,7 @@ void ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; for (node = listhead (area->oiflist); node; nextnode (node)) ospf_ls_retransmit_delete_nbr_if (getdata (node), lsa); @@ -974,7 +974,7 @@ ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area, void ospf_ls_retransmit_delete_nbr_as (struct ospf *ospf, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; for (node = listhead (ospf->oiflist); node; nextnode (node)) ospf_ls_retransmit_delete_nbr_if (getdata (node), lsa); |