Fixes some log messages.

This commit is contained in:
Ondrej Zajicek 2009-12-03 18:56:39 +01:00
parent 69fbf9a251
commit bb3c7c6d22
2 changed files with 4 additions and 4 deletions

View file

@ -173,11 +173,11 @@ ospf_lsack_receive(struct ospf_packet *ps_i, struct ospf_iface *ifa,
continue; continue;
OSPF_TRACE(D_PACKETS, "Strange LS acknoledgement from %I", n->ip); 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); 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); 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); lsa.age, lsa.sn, lsa.checksum);
continue; continue;
} }

View file

@ -28,7 +28,7 @@ static void ospf_dump_lsreq(struct proto *p, struct ospf_lsreq_packet *pkt)
sizeof(struct ospf_lsreq_header); sizeof(struct ospf_lsreq_header);
for (i = 0; i < j; i++) for (i = 0; i < j; i++)
log(L_TRACE "%s: LSR Id: %R, Rt: %R, Type: 0x%x", p->name, log(L_TRACE "%s: LSR Id: %R, Rt: %R, Type: 0x%04x", p->name,
htonl(pkt->lsh[i].id), htonl(pkt->lsh[i].rt), htonl(pkt->lsh[i].type)); htonl(pkt->lsh[i].id), htonl(pkt->lsh[i].rt), htonl(pkt->lsh[i].type));
} }