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_vxlan.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_vxlan.c')
-rw-r--r-- | zebra/zebra_vxlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 6954c63af..f1c7debe1 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -6293,7 +6293,7 @@ void zebra_vxlan_set_accept_bgp_seq(bool set) accept_bgp_seq = set; } -bool zebra_vxlan_accept_bgp_seq(void) +bool zebra_vxlan_get_accept_bgp_seq(void) { return accept_bgp_seq; } |