Remove usage of evil list and listnode typedefs.
diff --git a/ospfd/ospf_neighbor.c b/ospfd/ospf_neighbor.c
index 6f2d4a0..511b292 100644
--- a/ospfd/ospf_neighbor.c
+++ b/ospfd/ospf_neighbor.c
@@ -294,7 +294,7 @@
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 @@
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))
{