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

Fix stupid bug in neighbor cache.

This commit is contained in:
Martin Mares
2000-04-10 10:40:00 +00:00
parent ef2c708dfa
commit 287111fed1
2 changed files with 2 additions and 3 deletions

View File

@@ -232,8 +232,8 @@ if_update(struct iface *new)
i = mb_alloc(if_pool, sizeof(struct iface));
memcpy(i, new, sizeof(*i));
init_list(&i->addrs);
init_list(&i->neighbors);
newif:
init_list(&i->neighbors);
i->flags |= IF_UPDATED | IF_TMP_DOWN; /* Tmp down as we don't have addresses yet */
add_tail(&iface_list, &i->n);
return i;