ospf_int_sm(ifa, ISM_NEICH);
/* Neighbor is no more declaring itself as DR or BDR */
- if(((n->rid==olddr) && (n->dr!=olddr)) || ((n->rid==olbddr) &&
+ if(((n->rid==olddr) && (n->dr!=olddr)) || ((n->rid==oldbdr) &&
(n->dr!=oldbdr)))
ospf_int_sm(ifa, ISM_NEICH);
}
{
ifa=n->ifa;
n->state=state;
- if(state==2WAY && oldstate<2WAY) ospf_int_sm(n->ifa, ISM_NEICH);
- if(state<2WAY && oldstate>=2WAY) ospf_int_sm(n->ifa, ISM_NEICH);
+ if((state==NEIGHBOR_2WAY) && (oldstate<NEIGHBOR_2WAY))
+ ospf_int_sm(n->ifa, ISM_NEICH);
+ if((state<NEIGHBOR_2WAY) && (oldstate>=NEIGHBOR_2WAY))
+ ospf_int_sm(n->ifa, ISM_NEICH);
if(oldstate==NEIGHBOR_FULL) /* Decrease number of adjacencies */
{
ifa->fadj--;