From 5c84cddab8ec7fd4343ed7bc2c7602b01d4f6846 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Fri, 9 Aug 2024 16:33:52 +0300 Subject: [PATCH] bgpd: Shrink rmap_change_flags to 2-bytes 4 bytes is not needed for this thing clearly. Signed-off-by: Donatas Abraitis --- bgpd/bgp_attr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_attr.h b/bgpd/bgp_attr.h index 34393a0f1b..561024e7c8 100644 --- a/bgpd/bgp_attr.h +++ b/bgpd/bgp_attr.h @@ -209,7 +209,7 @@ struct attr { /* has the route-map changed any attribute? Used on the peer outbound side. */ - uint32_t rmap_change_flags; + uint16_t rmap_change_flags; /* Multi-Protocol Nexthop, AFI IPv6 */ struct in6_addr mp_nexthop_global; -- 2.39.5