From: Martin Mares Date: Mon, 10 Apr 2000 10:40:00 +0000 (+0000) Subject: Fix stupid bug in neighbor cache. X-Git-Tag: v1.2.0~1203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=287111fed1c8e9eb135df1108ea747e02b30e9e9;p=thirdparty%2Fbird.git Fix stupid bug in neighbor cache. --- diff --git a/nest/iface.c b/nest/iface.c index 0ba6bef9a..b58b183de 100644 --- a/nest/iface.c +++ b/nest/iface.c @@ -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; diff --git a/nest/neighbor.c b/nest/neighbor.c index c4328b6cf..ef1df8653 100644 --- a/nest/neighbor.c +++ b/nest/neighbor.c @@ -138,8 +138,7 @@ neigh_if_up(struct iface *i) neighbor *n, *next; WALK_LIST_DELSAFE(n, next, sticky_neigh_list) - if (!n->iface && - if_connected(&n->addr, i) > 0) + if (if_connected(&n->addr, i) > 0) { n->iface = i; add_tail(&i->neighbors, &n->if_n);