diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-04 19:28:41 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-04 19:28:41 +0200 |
commit | 27f49a2c3c2a86b4822ff1980d751666ed8cee97 (patch) | |
tree | b80e89fc5bdfa4f514c0c2607008f870ca1bebc0 /proto/ospf/packet.c | |
parent | 77539c4471d4b3f19347d2efc99680f815e1c78a (diff) | |
download | bird-27f49a2c3c2a86b4822ff1980d751666ed8cee97.tar bird-27f49a2c3c2a86b4822ff1980d751666ed8cee97.zip |
lsreq.c indented and small 'struct proto' changes.
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 90ac7de..ea10fc9 100644 --- a/proto/ospf/packet.c +++ b/proto/ospf/packet.c @@ -184,7 +184,7 @@ ospf_rx_hook (sock * sk, int size) break; case LSREQ_P: DBG ("%s: Link state request received.\n", p->name); - ospf_lsreq_rx ((struct ospf_lsreq_packet *) ps, p, ifa, size); + ospf_lsreq_receive((struct ospf_lsreq_packet *) ps, ifa, size); break; case LSUPD_P: DBG ("%s: Link state update received.\n", p->name); |