From b7395791a31f7b734094d032998ab632136f36f1 Mon Sep 17 00:00:00 2001 From: hasso Date: Fri, 26 Aug 2005 12:58:38 +0000 Subject: [PATCH] * bgp_route.c: Third (?) attempt to fix best selection breakage introduced long time ago with route server patch. Hopefully it's last case to fix - route-server client not in peer group. [backport candidate] --- bgpd/ChangeLog | 6 ++++++ bgpd/bgp_route.c | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog index f7171665a..29d0fb0ef 100644 --- a/bgpd/ChangeLog +++ b/bgpd/ChangeLog @@ -1,3 +1,9 @@ +2005-08-26 Hasso Tepper + + * bgp_route.c: Third (?) attempt to fix best selection breakage + introduced long time ago with route server patch. Hopefully + it's last case to fix - route-server client not in peer group. + 2005-08-22 Hugo Santos * bgp_vty.c: (general) Add support for BGP IPv6 Multicast SAFI diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 862fd4333..14fa86a54 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -1286,6 +1286,13 @@ bgp_process_rsclient (struct bgp_process_queue *pq) } else { + if (old_select) + UNSET_FLAG (old_select->flags, BGP_INFO_SELECTED); + if (new_select) + { + SET_FLAG (new_select->flags, BGP_INFO_SELECTED); + UNSET_FLAG (new_select->flags, BGP_INFO_ATTR_CHANGED); + } bgp_process_announce_selected (rsclient, new_select, rn, &attr, afi, safi); } -- 2.39.2