summaryrefslogtreecommitdiffstats
path: root/proto/ospf/packet.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2004-06-04 22:41:02 +0200
committerOndrej Filip <feela@network.cz>2004-06-04 22:41:02 +0200
commit9b7de4c4d13a5701aac446627672e65fce9e1a9d (patch)
tree72a8e8742eff396abdf463ef1311310aed258ec9 /proto/ospf/packet.c
parent54467ed46b31e29215e50d32b0a757998de29793 (diff)
downloadbird-9b7de4c4d13a5701aac446627672e65fce9e1a9d.tar
bird-9b7de4c4d13a5701aac446627672e65fce9e1a9d.zip
'struct proto' removed
Finally, I found the bug reported by Andreas Steinmetz. FIXED.
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 ce7a629..63a9543 100644
--- a/proto/ospf/packet.c
+++ b/proto/ospf/packet.c
@@ -188,7 +188,7 @@ ospf_rx_hook (sock *sk, int size)
break;
case LSUPD_P:
DBG ("%s: Link state update received.\n", p->name);
- ospf_lsupd_rx ((struct ospf_lsupd_packet *) ps, p, ifa, size);
+ ospf_lsupd_receive((struct ospf_lsupd_packet *) ps, ifa, size);
break;
case LSACK_P:
DBG ("%s: Link state ack received.\n", p->name);