diff options
author | Ondrej Filip <feela@network.cz> | 2001-12-07 18:34:09 +0100 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2001-12-07 18:34:09 +0100 |
commit | b78696282de32a202a9bed304f8edf044833f36f (patch) | |
tree | 977194ea946eecb7d5d79805730bf3d6b40af849 /proto | |
parent | 30c34a10797c2773a0b99e71b22f111ee2a7f980 (diff) | |
download | bird-b78696282de32a202a9bed304f8edf044833f36f.tar bird-b78696282de32a202a9bed304f8edf044833f36f.zip |
Bugfix in router importation.
Diffstat (limited to 'proto')
-rw-r--r-- | proto/ospf/rt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/rt.c b/proto/ospf/rt.c index 8a6990e..b8cbbd1 100644 --- a/proto/ospf/rt.c +++ b/proto/ospf/rt.c @@ -200,7 +200,7 @@ again: else { /* Update routing table */ - if(nf->en->nhi==NULL) + if(ipa_equal(nf->en->nh,ipa_from_u32(0))) { struct top_hash_entry *en=nf->en; struct ospf_neighbor *neigh; |