0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-17 16:48:43 +00:00

Fixes seqnum generation.

Thanks Mohammad Amin Shoaie for notification.
This commit is contained in:
Ondrej Zajicek 2011-10-27 13:21:24 +02:00
parent 78e33c29bb
commit 74add5df17

View File

@ -150,7 +150,7 @@ get_seqnum(struct top_hash_entry *en)
return LSA_INITSEQNO;
}
return en->lsa.sn++;
return en->lsa.sn + 1;
}