diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-12-14 17:29:33 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-12-14 17:29:33 +0100 |
commit | 34a877ccac25d38172716d3d2488449c870cad0b (patch) | |
tree | 633e46d33ceab3d67f8c4b6427384930fca95777 /proto/ospf/lsack.c | |
parent | 8a70a13e7e79afa6818b10cf64d4f1ae4cf89e4b (diff) |
Minor updates.
Diffstat (limited to 'proto/ospf/lsack.c')
-rw-r--r-- | proto/ospf/lsack.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/proto/ospf/lsack.c b/proto/ospf/lsack.c index a2189304..c740ef69 100644 --- a/proto/ospf/lsack.c +++ b/proto/ospf/lsack.c @@ -172,12 +172,12 @@ ospf_lsack_receive(struct ospf_packet *ps_i, struct ospf_iface *ifa, if ((lsa.sn == LSA_MAXSEQNO) && (lsa.age == LSA_MAXAGE)) continue; - OSPF_TRACE(D_PACKETS, "Strange LS acknoledgement from %I", n->ip); - OSPF_TRACE(D_PACKETS, "Id: %R, Rt: %R, Type: 0x%04x", - lsa.id, lsa.rt, lsa.type); - OSPF_TRACE(D_PACKETS, "I have: Age: %4u, Seqno: 0x%08x, Sum: 0x%04x", + OSPF_TRACE(D_PACKETS, "Strange LSACK from %I", n->ip); + OSPF_TRACE(D_PACKETS, "Type: %04x, Id: %R, Rt: %R", + lsa.type, lsa.id, lsa.rt); + OSPF_TRACE(D_PACKETS, "I have: Age: %4u, Seq: %08x, Sum: %04x", en->lsa.age, en->lsa.sn, en->lsa.checksum); - OSPF_TRACE(D_PACKETS, "He has: Age: %4u, Seqno: 0x%08x, Sum: 0x%04x", + OSPF_TRACE(D_PACKETS, "He has: Age: %4u, Seq: %08x, Sum: %04x", lsa.age, lsa.sn, lsa.checksum); continue; } |