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_neighbor.c | |
| parent | 44983cf8a9c587dfbcad294b9dfe4dccbb68ba98 (diff) | |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ospfd/ospf_neighbor.c')
| -rw-r--r-- | ospfd/ospf_neighbor.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_neighbor.c b/ospfd/ospf_neighbor.c index 6f2d4a0502..511b292d7c 100644 --- a/ospfd/ospf_neighbor.c +++ b/ospfd/ospf_neighbor.c @@ -294,7 +294,7 @@ ospf_nbr_lookup_by_routerid (struct route_table *nbrs,  void  ospf_renegotiate_optional_capabilities (struct ospf *top)  { -  listnode node; +  struct listnode *node;    struct ospf_interface *oi;    struct route_table *nbrs;    struct route_node *rn; @@ -353,7 +353,7 @@ ospf_nbr_add (struct ospf_interface *oi, struct ospf_header *ospfh,    if (oi->type == OSPF_IFTYPE_NBMA)      {        struct ospf_nbr_nbma *nbr_nbma; -      listnode node; +      struct listnode *node;        for (node = listhead (oi->nbr_nbma); node; nextnode (node))          {  | 
