From: Daniel Walton Date: Wed, 9 Aug 2017 16:47:05 +0000 (+0400) Subject: bgpd: do not bounce peer when re-binding to current peer-group X-Git-Tag: frr-4.0-dev~429^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=d8a079e8a2fad1de2372cea63c8857c411e6c4b5;p=mirror%2Ffrr.git bgpd: do not bounce peer when re-binding to current peer-group Signed-off-by: Daniel Walton --- diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index 75975b8d68..5a423e0c71 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -2523,7 +2523,8 @@ int peer_group_bind(struct bgp *bgp, union sockunion *su, struct peer *peer, if (peer_group_active(peer)) { /* The peer is already bound to the peer-group, - * nothing to do */ + * nothing to do + */ if (strcmp(peer->group->name, group->name) == 0) return 0; else