From daed95ddce8f59d249dae885a1060e49c6071f7c Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 20 Jan 2024 19:10:07 -0500 Subject: [PATCH] zebra: Fix NEXTHOP_GROUP_FPM define value The NEXTHOP_GROUP_FPM #define conflicts with NEXTHOP_GROUP_KEEP_AROUND. Not ideal let's fix this. Signed-off-by: Donald Sharp --- zebra/zebra_nhg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_nhg.h b/zebra/zebra_nhg.h index 6179be3442e7..4eddecb73d6e 100644 --- a/zebra/zebra_nhg.h +++ b/zebra/zebra_nhg.h @@ -143,7 +143,7 @@ struct nhg_hash_entry { /* * Track FPM installation status.. */ -#define NEXTHOP_GROUP_FPM (1 << 6) +#define NEXTHOP_GROUP_FPM (1 << 7) }; /* Upper 4 bits of the NHG are reserved for indicating the NHG type */