diff options
| author | Russ White <russ@riw.us> | 2024-04-26 14:41:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-26 14:41:05 -0400 |
| commit | f19817f71daeb3b566ac55e5605c683dfcd70369 (patch) | |
| tree | c530c5282562c3a65a3e8a4a4b9ff0e5f7474382 /lib/zclient.c | |
| parent | 6a7fadaecc5367dcf05694da5dcfc226d5cfec09 (diff) | |
| parent | 634d1375faa62c6593cc9292d32804666333a1f6 (diff) | |
Merge pull request #15723 from opensourcerouting/feature/extended_link_bw_refactored_v1
bgpd: Implement extended link-bandwidth
Diffstat (limited to 'lib/zclient.c')
| -rw-r--r-- | lib/zclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index 4cbd04c116..8a6eb95134 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -1040,7 +1040,7 @@ int zapi_nexthop_encode(struct stream *s, const struct zapi_nexthop *api_nh, } if (api_nh->weight) - stream_putl(s, api_nh->weight); + stream_putq(s, api_nh->weight); /* Router MAC for EVPN routes. */ if (CHECK_FLAG(nh_flags, ZAPI_NEXTHOP_FLAG_EVPN)) @@ -1412,7 +1412,7 @@ int zapi_nexthop_decode(struct stream *s, struct zapi_nexthop *api_nh, } if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_WEIGHT)) - STREAM_GETL(s, api_nh->weight); + STREAM_GETQ(s, api_nh->weight); /* Router MAC for EVPN routes. */ if (CHECK_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_EVPN)) |
