From: Quentin Young Date: Mon, 26 Mar 2018 05:24:41 +0000 (-0400) Subject: bgpd: actually suppress coalesce-time X-Git-Tag: frr-5.0-dev~121^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=9df5ac497ec2a3dbb52ae9f6d9b8c5c0cdf1c628;p=matthieu%2Ffrr.git bgpd: actually suppress coalesce-time Previous patches to suppress display of automatically calculated coalesce-time did not fully work because the flag indicating whether the value was automatically calculated was not set properly upon creation. Signed-off-by: Quentin Young --- diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index c178727b54..d103584594 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -2863,6 +2863,7 @@ static struct bgp *bgp_create(as_t *as, const char *name, } bgp_lock(bgp); + bgp->heuristic_coalesce = true; bgp->inst_type = inst_type; bgp->vrf_id = (inst_type == BGP_INSTANCE_TYPE_DEFAULT) ? VRF_DEFAULT : VRF_UNKNOWN;