From d998c0f7138e7b4ecdd49dbbc8257bc13cebde35 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 20 May 2015 07:00:02 -0700 Subject: [PATCH] Fixup 'force' -vs- 'all' compile issue Our code implemented 'force' for a keyword while quagga mainline implemented 'all'. This fixups the #define usage that was missed that came in during one of the patch files. This is a compile only testing Signed-off-by: Donald Sharp --- bgpd/bgp_route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 7ffb35c1b1..b1061e96ff 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -1480,7 +1480,7 @@ subgroup_announce_check (struct bgp_info *ri, struct update_subgroup *subgrp, { if (!reflect || CHECK_FLAG (peer->af_flags[afi][safi], - PEER_FLAG_FORCE_NEXTHOP_SELF)) + PEER_FLAG_NEXTHOP_SELF_ALL)) subgroup_announce_reset_nhop (p->family, attr); } else if (peer->sort == BGP_PEER_EBGP) -- 2.39.5