diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-27 02:03:34 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-02-28 19:59:13 +0100 |
commit | 7f5818fbd674decdacec17764cf8c0cc89e26bca (patch) | |
tree | c1d0dc044d242f22d909327309aedaced696d2be /bgpd/bgp_community.c | |
parent | Merge pull request #5862 from sworleys/PBR-No-Table-Range (diff) | |
download | frr-7f5818fbd674decdacec17764cf8c0cc89e26bca.tar.xz frr-7f5818fbd674decdacec17764cf8c0cc89e26bca.zip |
*: change hash_backet to hash_bucket
It's been a year search and destroy.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_community.c')
-rw-r--r-- | bgpd/bgp_community.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_community.c b/bgpd/bgp_community.c index 496d7ed2b..c145c47d0 100644 --- a/bgpd/bgp_community.c +++ b/bgpd/bgp_community.c @@ -907,7 +907,7 @@ static void *bgp_aggr_communty_hash_alloc(void *p) return community; } -static void bgp_aggr_community_prepare(struct hash_backet *hb, void *arg) +static void bgp_aggr_community_prepare(struct hash_bucket *hb, void *arg) { struct community *hb_community = hb->data; struct community **aggr_community = arg; |