Skip to content

Commit 81c155b

Browse files
authored
Merge pull request FRRouting#19891 from donaldsharp/peer_group_notify_unconfig_bug
bgpd: Notify all incoming/outgoing on peer group notify unconfig
2 parents 95feb82 + 82fc14f commit 81c155b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bgpd/bgpd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3231,8 +3231,8 @@ void peer_group_notify_unconfig(struct peer_group *group)
32313231
if (other && other->connection->status != Deleted) {
32323232
other->group = NULL;
32333233
peer_notify_unconfig(other->connection);
3234-
} else
3235-
peer_notify_unconfig(peer->connection);
3234+
}
3235+
peer_notify_unconfig(peer->connection);
32363236
}
32373237
}
32383238

0 commit comments

Comments
 (0)