diff options
author | Ondrej Filip <feela@network.cz> | 2005-02-14 11:54:16 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2005-02-14 11:54:16 +0000 |
commit | b181f444a6538b03a02296f02928e3c131b251a6 (patch) | |
tree | 31086fa3f7d91ae64522a136da7d02cd821c1488 /proto/ospf/lsupd.c | |
parent | 75c1c585197f2b4a1b0295d36fe16a4869c21914 (diff) |
Small changes to reduce number of warnings.
Diffstat (limited to 'proto/ospf/lsupd.c')
-rw-r--r-- | proto/ospf/lsupd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index c6194424..d1881445 100644 --- a/proto/ospf/lsupd.c +++ b/proto/ospf/lsupd.c @@ -33,7 +33,7 @@ ospf_lsupd_flood(struct ospf_neighbor *n, struct ospf_lsa_header *hn, int ret, retval = 0; /* pg 148 */ - WALK_LIST(NODE ifa, po->iface_list) + WALK_LIST(ifa, po->iface_list) { if (ifa->stub) continue; @@ -51,7 +51,7 @@ ospf_lsupd_flood(struct ospf_neighbor *n, struct ospf_lsa_header *hn, continue; } ret = 0; - WALK_LIST(NODE nn, ifa->neigh_list) + WALK_LIST(nn, ifa->neigh_list) { if (nn->state < NEIGHBOR_EXCHANGE) continue; @@ -456,8 +456,8 @@ ospf_lsupd_receive(struct ospf_lsupd_packet *ps, /* Remove old from all ret lists */ /* pg 144 (5c) */ if (lsadb) - WALK_LIST(NODE ift, po->iface_list) - WALK_LIST(NODE ntmp, ift->neigh_list) + WALK_LIST(ift, po->iface_list) + WALK_LIST(ntmp, ift->neigh_list) { struct top_hash_entry *en; if (ntmp->state > NEIGHBOR_EXSTART) |