BFD: Fix reconfiguration of neighbors
The bfd_reconfigure_neighbors() returned after first reconfigured neighbor instead of continuing with the next one. Thanks to Winston Chen for the bugreport and a patch.
This commit is contained in:
parent
ca2dacfcee
commit
4821251ebb
1 changed files with 2 additions and 1 deletions
|
@ -837,10 +837,11 @@ bfd_reconfigure_neighbors(struct bfd_proto *p, struct bfd_config *new)
|
|||
|
||||
nn->req = on->req;
|
||||
nn->active = 1;
|
||||
return;
|
||||
goto next;
|
||||
}
|
||||
|
||||
bfd_stop_neighbor(p, on);
|
||||
next:;
|
||||
}
|
||||
|
||||
WALK_LIST(nn, new->neigh_list)
|
||||
|
|
Loading…
Reference in a new issue