diff options
author | Ondrej Filip <feela@network.cz> | 2013-09-11 01:15:34 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2013-09-11 01:15:34 +0200 |
commit | c404f4b968b69a2c5c1975d04abf7474891d5656 (patch) | |
tree | d7727084604cddefb69bb70aa4a031741e8d4d67 /proto/ospf | |
parent | 92f8878cbf5d8ad9e9b909a9dcbb2112de54a542 (diff) |
OSPF state machine fix - thanx to Alexander V. Chernikov
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/lsupd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/lsupd.c b/proto/ospf/lsupd.c index a5da4251..b19f2619 100644 --- a/proto/ospf/lsupd.c +++ b/proto/ospf/lsupd.c @@ -205,7 +205,7 @@ ospf_lsupd_flood(struct proto_ospf *po, en->lsa_body = NULL; DBG("Removing from lsreq list for neigh %R\n", nn->rid); ospf_hash_delete(nn->lsrqh, en); - if (EMPTY_SLIST(nn->lsrql)) + if ((EMPTY_SLIST(nn->lsrql)) && (nn->state == NEIGHBOR_LOADING)) ospf_neigh_sm(nn, INM_LOADDONE); continue; break; @@ -216,7 +216,7 @@ ospf_lsupd_flood(struct proto_ospf *po, en->lsa_body = NULL; DBG("Removing from lsreq list for neigh %R\n", nn->rid); ospf_hash_delete(nn->lsrqh, en); - if (EMPTY_SLIST(nn->lsrql)) + if ((EMPTY_SLIST(nn->lsrql)) && (nn->state == NEIGHBOR_LOADING)) ospf_neigh_sm(nn, INM_LOADDONE); break; default: |