diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-09 14:02:48 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-09 14:02:48 +0200 |
commit | 54ac9d2e03c6ae44b4e183c9bcf963196218c477 (patch) | |
tree | ec428bada3ce9fad60f9c954a3d984230f26e965 /proto/ospf/hello.c | |
parent | 4057093fa40248c5b607039481576a6c5e4e902b (diff) | |
download | bird-54ac9d2e03c6ae44b4e183c9bcf963196218c477.tar bird-54ac9d2e03c6ae44b4e183c9bcf963196218c477.zip |
Bugfix in hello.
Diffstat (limited to 'proto/ospf/hello.c')
-rw-r--r-- | proto/ospf/hello.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/hello.c b/proto/ospf/hello.c index d15f529..f3bd3d5 100644 --- a/proto/ospf/hello.c +++ b/proto/ospf/hello.c @@ -162,7 +162,7 @@ ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p, /* Neighbor is no more declaring itself as DR or BDR */ if(((n->rid==olddr) && (n->dr!=olddr)) || ((n->rid==oldbdr) && - (n->dr!=oldbdr))) + (n->bdr!=oldbdr))) ospf_int_sm(ifa, ISM_NEICH); } |