1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Bugfix in lsrt slist adding.

This commit is contained in:
Ondrej Filip
2000-05-09 19:38:16 +00:00
parent b224ca32cf
commit a3ae6246c2
2 changed files with 3 additions and 2 deletions

View File

@@ -186,8 +186,8 @@ ospf_lsack_rx(struct ospf_lsack_packet *ps, struct proto *p,
{
log("Strange LS acknoledgement from %I",n->rid);
log("Id: %I, Rt: %I, Type: %u",lsa.id, lsa.rt, lsa.type);
log("I have: Age: %u, Seqno: %u", en->lsa.age, en->lsa.sn);
log("He has: Age: %u, Seqno: %u", lsa.age, lsa.sn);
log("I have: Age: %4u, Seqno: 0x%08x", en->lsa.age, en->lsa.sn);
log("He has: Age: %4u, Seqno: 0x%08x", lsa.age, lsa.sn);
continue;
}