diff options
Diffstat (limited to 'proto/ospf/packet.c')
-rw-r--r-- | proto/ospf/packet.c | 2 |
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); } |