diff options
author | Stephen Worley <sworley@nvidia.com> | 2022-11-01 19:09:15 +0100 |
---|---|---|
committer | Stephen Worley <sworley@nvidia.com> | 2022-11-01 19:09:15 +0100 |
commit | da823882a5fb2295efdfed3154fa6130e3227e58 (patch) | |
tree | 6a25c808cdaef29ad3f7ff11e1d0bb60a9dd1eb0 /zebra/zebra_evpn_mac.c | |
parent | bgpd: fix vni table output broken by 8304dabfab906 (diff) | |
download | frr-da823882a5fb2295efdfed3154fa6130e3227e58.tar.xz frr-da823882a5fb2295efdfed3154fa6130e3227e58.zip |
zebra: use "get" naming for bgp accept lower knob
Use "get" as the name for checking the status of the bgp
accept lower seq knob. This already has an equivalent "set"
so makes sense to keep it consistent.
Signed-off-by: Stephen Worley <sworley@nvidia.com>
Diffstat (limited to 'zebra/zebra_evpn_mac.c')
-rw-r--r-- | zebra/zebra_evpn_mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_evpn_mac.c b/zebra/zebra_evpn_mac.c index f0d256e28..218184ad0 100644 --- a/zebra/zebra_evpn_mac.c +++ b/zebra/zebra_evpn_mac.c @@ -1642,7 +1642,7 @@ static inline bool zebra_evpn_mac_is_bgp_seq_ok(struct zebra_evpn *zevpn, /* if the mac was never advertised to bgp we must accept * whatever sequence number bgp sends */ - if (!is_local && zebra_vxlan_accept_bgp_seq()) { + if (!is_local && zebra_vxlan_get_accept_bgp_seq()) { if (IS_ZEBRA_DEBUG_EVPN_MH_MAC || IS_ZEBRA_DEBUG_VXLAN) { zlog_debug( |