summaryrefslogtreecommitdiffstats
path: root/proto/ospf/lsack.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-12-03 18:56:39 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2009-12-03 18:56:39 +0100
commitbb3c7c6d22c48cd78b4c5b77a78ff1b92adca053 (patch)
tree391335a62136db4eaac11d2e101002dade52c757 /proto/ospf/lsack.c
parent69fbf9a25190e0149dcc31e830e952c586fe2024 (diff)
downloadbird-bb3c7c6d22c48cd78b4c5b77a78ff1b92adca053.tar
bird-bb3c7c6d22c48cd78b4c5b77a78ff1b92adca053.zip
Fixes some log messages.
Diffstat (limited to 'proto/ospf/lsack.c')
-rw-r--r--proto/ospf/lsack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/proto/ospf/lsack.c b/proto/ospf/lsack.c
index ba9a918..a218930 100644
--- a/proto/ospf/lsack.c
+++ b/proto/ospf/lsack.c
@@ -173,11 +173,11 @@ ospf_lsack_receive(struct ospf_packet *ps_i, struct ospf_iface *ifa,
continue;
OSPF_TRACE(D_PACKETS, "Strange LS acknoledgement from %I", n->ip);
- OSPF_TRACE(D_PACKETS, "Id: %R, Rt: %R, Type: %u",
+ 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: %u",
+ OSPF_TRACE(D_PACKETS, "I have: Age: %4u, Seqno: 0x%08x, Sum: 0x%04x",
en->lsa.age, en->lsa.sn, en->lsa.checksum);
- OSPF_TRACE(D_PACKETS, "He has: Age: %4u, Seqno: 0x%08x, Sum: %u",
+ OSPF_TRACE(D_PACKETS, "He has: Age: %4u, Seqno: 0x%08x, Sum: 0x%04x",
lsa.age, lsa.sn, lsa.checksum);
continue;
}