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 /pimd/pimd.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 'pimd/pimd.c')
-rw-r--r-- | pimd/pimd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pimd.c b/pimd/pimd.c index ec1fe5b6d..b1d566f51 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -250,7 +250,7 @@ pim_instance_init (vrf_id_t vrf_id, afi_t afi) pim->spt.switchover = PIM_SPT_IMMEDIATE; pim->spt.plist = NULL; - pim->rpf_hash = hash_create_size (256, pim_rpf_hash_key, pim_rpf_equal); + pim->rpf_hash = hash_create_size (256, pim_rpf_hash_key, pim_rpf_equal, NULL); if (PIM_DEBUG_ZEBRA) zlog_debug ("%s: NHT rpf hash init ", __PRETTY_FUNCTION__); |