diff options
author | paul <paul> | 2004-10-07 14:19:36 +0000 |
---|---|---|
committer | paul <paul> | 2004-10-07 14:19:36 +0000 |
commit | 9457ee183e3578c9724cb738e8b04dc6f629a10f (patch) | |
tree | 5fc9807960f03f4937daeda9b12cb21de1c0c49c | |
parent | b66c13cbc484ed3cab7c666d18ffda7a3dc0e008 (diff) | |
download | quagga-9457ee183e3578c9724cb738e8b04dc6f629a10f.tar.bz2 quagga-9457ee183e3578c9724cb738e8b04dc6f629a10f.tar.xz |
2004-10-07 Paul Jakma <paul@dishone.st>
* ospf_snmp.c: Missed list typedef update
* ospf_dump.c: Include sockopt.h for header swab functions.
-rw-r--r-- | ospfd/ChangeLog | 5 | ||||
-rw-r--r-- | ospfd/ospf_dump.c | 1 | ||||
-rw-r--r-- | ospfd/ospf_snmp.c | 6 |
3 files changed, 9 insertions, 3 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 27d72d6b..20e9f409 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,3 +1,8 @@ +2004-10-07 Paul Jakma <paul@dishone.st> + + * ospf_snmp.c: Missed list typedef update + * ospf_dump.c: Include sockopt.h for header swab functions. + 2004-10-05 Paul Jakma <paul@dishone.st> * ospf_packet.c: replace ospf_swap_iph_to... with diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c index 25cb525d..8b4e78ba 100644 --- a/ospfd/ospf_dump.c +++ b/ospfd/ospf_dump.c @@ -28,6 +28,7 @@ #include "command.h" #include "stream.h" #include "log.h" +#include "sockopt.h" #include "ospfd/ospfd.h" #include "ospfd/ospf_interface.h" 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 (); |