diff options
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r-- | proto/ospf/neighbor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index 20c2f3c..3f9b0eb 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -159,7 +159,10 @@ tryadj(struct ospf_neighbor *n, struct proto *p) n->dds=random_u32(); } n->dds++; - n->myimms=(DBDES_MS | DBDES_M | DBDES_I ); + n->myimms.byte=0; + n->myimms.bit.ms=1; + n->myimms.bit.m=1; + n->myimms.bit.i=1; tm_start(n->ifa->rxmt_timer,1); /* Or some other number ? */ } |