diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-06-20 00:49:44 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-07-02 01:18:37 +0200 |
commit | dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3 (patch) | |
tree | ad5f5e7ebf2912329bebbc8f87303aa71b61d7b5 /bgpd/bgp_aspath.c | |
parent | lib, vtysh: hashtable statistics (diff) | |
download | frr-dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3.tar.xz frr-dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3.zip |
*: update hash_create(), hash_create_size()
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_aspath.c')
-rw-r--r-- | bgpd/bgp_aspath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index f9daeb2ed..f304b3a1b 100644 --- a/bgpd/bgp_aspath.c +++ b/bgpd/bgp_aspath.c @@ -2134,7 +2134,7 @@ aspath_cmp (const void *arg1, const void *arg2) void aspath_init (void) { - ashash = hash_create_size (32768, aspath_key_make, aspath_cmp); + ashash = hash_create_size (32768, aspath_key_make, aspath_cmp, NULL); } void |