mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-24 08:11:14 +00:00
Merge pull request #11077 from anlancs/fix/bfdd-hang-pathdown
bfdd: fix broken FSM in active mode
This commit is contained in:
commit
ae75ec20cd
@ -678,7 +678,8 @@ static void bfdd_sessions_enable_interface(struct interface *ifp)
|
||||
/* If Interface matches vrfname, then bypass iface check */
|
||||
if (vrf_is_backend_netns() || strcmp(ifp->name, vrf->name)) {
|
||||
/* Interface name mismatch. */
|
||||
if (strcmp(ifp->name, bs->key.ifname))
|
||||
if (bs->key.ifname[0] &&
|
||||
strcmp(ifp->name, bs->key.ifname))
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user