summaryrefslogtreecommitdiff
path: root/pimd/pim_pim.c
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <Jafaral@users.noreply.github.com>2017-04-10 11:07:58 -0500
committerGitHub <noreply@github.com>2017-04-10 11:07:58 -0500
commitb43d5ea3302a62133e249d0659e531becbcfbe8b (patch)
tree7fb8f11d6020f828cd0bfc627434b84f807e5790 /pimd/pim_pim.c
parent73a9e6d2a571b5626b071fe69dd2faffaa33f946 (diff)
parent4390fb9991e78d759c25ffc23be378c8b9242614 (diff)
Merge pull request #304 from donaldsharp/pim_5549
Pim 5549 Additions
Diffstat (limited to 'pimd/pim_pim.c')
-rw-r--r--pimd/pim_pim.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pimd/pim_pim.c b/pimd/pim_pim.c
index b2f858b7d9..9886cd6ad2 100644
--- a/pimd/pim_pim.c
+++ b/pimd/pim_pim.c
@@ -627,7 +627,7 @@ static int hello_send(struct interface *ifp,
listcount(ifp->connected));
}
- pim_tlv_size = pim_hello_build_tlv(ifp->name,
+ pim_tlv_size = pim_hello_build_tlv(ifp,
pim_msg + PIM_PIM_MIN_LEN,
sizeof(pim_msg) - PIM_PIM_MIN_LEN,
holdtime,
@@ -635,8 +635,7 @@ static int hello_send(struct interface *ifp,
pim_ifp->pim_generation_id,
pim_ifp->pim_propagation_delay_msec,
pim_ifp->pim_override_interval_msec,
- PIM_IF_TEST_PIM_CAN_DISABLE_JOIN_SUPRESSION(pim_ifp->options),
- ifp->connected);
+ PIM_IF_TEST_PIM_CAN_DISABLE_JOIN_SUPRESSION(pim_ifp->options));
if (pim_tlv_size < 0) {
return -1;
}