diff options
Diffstat (limited to 'ospfd/ospf_snmp.c')
-rw-r--r-- | ospfd/ospf_snmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ospfd/ospf_snmp.c b/ospfd/ospf_snmp.c index e3d01fb6..3be3ce41 100644 --- a/ospfd/ospf_snmp.c +++ b/ospfd/ospf_snmp.c @@ -498,7 +498,7 @@ struct variable ospf_variables[] = int ospf_admin_stat (struct ospf *ospf) { - listnode node; + struct listnode *node; struct ospf_interface *oi; if (ospf == NULL) @@ -619,7 +619,7 @@ struct ospf_area * ospf_area_lookup_next (struct ospf *ospf, struct in_addr *area_id, int first) { struct ospf_area *area; - listnode node; + struct listnode *node; if (ospf == NULL) return NULL; @@ -755,7 +755,7 @@ struct ospf_area * ospf_stub_area_lookup_next (struct in_addr *area_id, int first) { struct ospf_area *area; - listnode node; + struct listnode *node; struct ospf *ospf; ospf = ospf_lookup (); |