diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-04 16:23:58 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-04 16:23:58 +0200 |
commit | b90f9c526e553f1c30b9b177fc72c382ab333fc7 (patch) | |
tree | db587e07bdd50f2f597f3085f4eb6537da44001a /proto/ospf | |
parent | 18b40a40726bf6ec03e496a068faa8d173c27dd8 (diff) | |
download | bird-b90f9c526e553f1c30b9b177fc72c382ab333fc7.tar bird-b90f9c526e553f1c30b9b177fc72c382ab333fc7.zip |
Initialize iterator on the right place.
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/neighbor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index 61bf555..ceb7fc6 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -58,7 +58,6 @@ ospf_neighbor_new(struct ospf_iface *ifa) n->lsrqh = ospf_top_new(pool, n->ifa->proto); s_init_list(&(n->lsrtl)); n->lsrth = ospf_top_new(pool, n->ifa->proto); - s_init(&(n->dbsi), &(n->ifa->oa->lsal)); s_init(&(n->lsrqi), &(n->lsrql)); s_init(&(n->lsrti), &(n->lsrtl)); tm_start(n->rxmt_timer,n->ifa->rxmtint); @@ -307,6 +306,7 @@ ospf_neigh_sm(struct ospf_neighbor *n, int event) if(n->state==NEIGHBOR_EXSTART) { neigh_chstate(n,NEIGHBOR_EXCHANGE); + s_init(&(n->dbsi), &(n->ifa->oa->lsal)); while(!EMPTY_LIST(n->ackl)) { struct lsah_n *no; |