From: Donald Sharp Date: Sun, 21 Jan 2024 00:10:07 +0000 (-0500) Subject: zebra: Fix NEXTHOP_GROUP_FPM define value X-Git-Tag: base_10.0~105^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=daed95ddce8f59d249dae885a1060e49c6071f7c;p=matthieu%2Ffrr.git 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 --- diff --git a/zebra/zebra_nhg.h b/zebra/zebra_nhg.h index 6179be3442..4eddecb73d 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 */