summaryrefslogtreecommitdiff
path: root/nhrpd/nhrp_vc.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-06-19 22:49:44 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-07-01 19:18:37 -0400
commitdfd19ccc3a21b18fb09cecff5d87d20a0adbafe3 (patch)
treead5f5e7ebf2912329bebbc8f87303aa71b61d7b5 /nhrpd/nhrp_vc.c
parent6f6f00107e72cc9c01a6604ff514a5b25d52106d (diff)
*: update hash_create(), hash_create_size()
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'nhrpd/nhrp_vc.c')
-rw-r--r--nhrpd/nhrp_vc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_vc.c b/nhrpd/nhrp_vc.c
index 57fb462ab6..a5547a7a7e 100644
--- a/nhrpd/nhrp_vc.c
+++ b/nhrpd/nhrp_vc.c
@@ -196,7 +196,7 @@ void nhrp_vc_init(void)
{
size_t i;
- nhrp_vc_hash = hash_create(nhrp_vc_key, nhrp_vc_cmp);
+ nhrp_vc_hash = hash_create(nhrp_vc_key, nhrp_vc_cmp, NULL);
for (i = 0; i < ZEBRA_NUM_OF(childlist_head); i++)
list_init(&childlist_head[i]);
}