diff options
author | Louis Scalbert <louis.scalbert@6wind.com> | 2024-02-26 18:11:09 +0100 |
---|---|---|
committer | Louis Scalbert <louis.scalbert@6wind.com> | 2024-06-05 13:11:29 +0200 |
commit | a6de9104481814508deee38bdcf308f4693a6bca (patch) | |
tree | be0836c357b007871aba39b83ce260d024afab59 /bgpd/bgp_rpki.c | |
parent | bgpd: fix too leading tabs in vnc_import_bgp (diff) | |
download | frr-a6de9104481814508deee38bdcf308f4693a6bca.tar.xz frr-a6de9104481814508deee38bdcf308f4693a6bca.zip |
bgpd: store number of labels with 8 bits
8 bits are sufficient to store the number of labels because the current
maximum is 2.
Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
Diffstat (limited to 'bgpd/bgp_rpki.c')
-rw-r--r-- | bgpd/bgp_rpki.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_rpki.c b/bgpd/bgp_rpki.c index 63742fad4..ccac75454 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -657,7 +657,7 @@ static void revalidate_bgp_node(struct bgp_dest *bgp_dest, afi_t afi, { struct bgp_adj_in *ain; mpls_label_t *label; - uint32_t num_labels; + uint8_t num_labels; for (ain = bgp_dest->adj_in; ain; ain = ain->next) { struct bgp_path_info *path = |