summaryrefslogtreecommitdiffstats
path: root/proto/ospf/packet.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2005-02-14 12:54:16 +0100
committerOndrej Filip <feela@network.cz>2005-02-14 12:54:16 +0100
commitb181f444a6538b03a02296f02928e3c131b251a6 (patch)
tree31086fa3f7d91ae64522a136da7d02cd821c1488 /proto/ospf/packet.c
parent75c1c585197f2b4a1b0295d36fe16a4869c21914 (diff)
downloadbird-b181f444a6538b03a02296f02928e3c131b251a6.tar
bird-b181f444a6538b03a02296f02928e3c131b251a6.zip
Small changes to reduce number of warnings.
Diffstat (limited to 'proto/ospf/packet.c')
-rw-r--r--proto/ospf/packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/packet.c b/proto/ospf/packet.c
index 6a334d0..ac6a06f 100644
--- a/proto/ospf/packet.c
+++ b/proto/ospf/packet.c
@@ -373,7 +373,7 @@ ospf_send_to_agt(sock * sk, struct ospf_iface *ifa, u8 state)
{
struct ospf_neighbor *n;
- WALK_LIST(NODE n, ifa->neigh_list) if (n->state >= state)
+ WALK_LIST(n, ifa->neigh_list) if (n->state >= state)
ospf_send_to(sk, n->ip, ifa);
}