diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-01-21 13:43:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-21 13:43:35 +0200 |
| commit | 19672227ef5b331b456d22f7fbb440a0652ff28f (patch) | |
| tree | 91590349d1cab4a42219894f8427bbcbda3d6ca4 | |
| parent | e37f18b780c56afcbecc38f8f90c89c8172adca2 (diff) | |
| parent | daed95ddce8f59d249dae885a1060e49c6071f7c (diff) | |
Merge pull request #15183 from donaldsharp/zebra_nhg_worms
zebra: Fix NEXTHOP_GROUP_FPM define value
| -rw-r--r-- | zebra/zebra_nhg.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |
