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

Temporary OSPFv3 development commit

This commit is contained in:
Ondrej Zajicek
2009-08-25 16:42:14 +02:00
parent c3226991a0
commit b49e6f5a65
23 changed files with 449 additions and 214 deletions

View File

@@ -384,12 +384,11 @@ lsa_install_new(struct proto_ospf *po, struct ospf_lsa_header *lsa, u32 domain,
{
/* LSA can be temporarrily, but body must be mb_allocated. */
int change = 0;
unsigned i;
struct top_hash_entry *en;
if ((en = ospfxx_hash_find_header(po->gr, domain, lsa)) == NULL)
if ((en = ospf_hash_find_header(po->gr, domain, lsa)) == NULL)
{
en = ospfxx_hash_get_header(po->gr, domain, lsa);
en = ospf_hash_get_header(po->gr, domain, lsa);
change = 1;
}
else