From 0313bf98a5d36aa89e23bf9a7af9f63012853b77 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Sun, 5 Jan 2025 21:42:18 +0200 Subject: [PATCH] bgpd: Use unique value for BGP_NEXTHOP_EVPN_INCOMPLETE flag This was reused with BGP_NEXTHOP_ULTIMATE by error. Fixes: 93fd9cbb5022e0c40827cd6d6ef339624a8b5daa ("bgpd: Validate imported routes next-hop that is in a default VRF") Signed-off-by: Donatas Abraitis --- bgpd/bgp_nexthop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_nexthop.h b/bgpd/bgp_nexthop.h index 6a4a02dcc8..5679c215b1 100644 --- a/bgpd/bgp_nexthop.h +++ b/bgpd/bgp_nexthop.h @@ -82,7 +82,7 @@ struct bgp_nexthop_cache { * L3 unreachable | VALID = 0 | VALID = 0 * | INCOMPLETE = 0 | INCOMPLETE = 0 */ -#define BGP_NEXTHOP_EVPN_INCOMPLETE (1 << 7) +#define BGP_NEXTHOP_EVPN_INCOMPLETE (1 << 8) uint32_t srte_color;