summaryrefslogtreecommitdiffstats
path: root/pimd/pim_vxlan.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2019-05-03 00:25:57 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2019-06-07 19:27:29 +0200
commitae14da4860df6bcffd848ee765d3db4750a4c23f (patch)
treedfef2923862eb6e9519468dc634d7be0ee22a809 /pimd/pim_vxlan.c
parentMerge pull request #4449 from opensourcerouting/py-detect (diff)
downloadfrr-ae14da4860df6bcffd848ee765d3db4750a4c23f.tar.xz
frr-ae14da4860df6bcffd848ee765d3db4750a4c23f.zip
pimd: Remove unnecessary boolean to pim_rpf_update
We already log whether or not we add nht tracking, having an additional boolean to say to log another line is a bit over the top. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_vxlan.c')
-rw-r--r--pimd/pim_vxlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_vxlan.c b/pimd/pim_vxlan.c
index 09669e206..d2648fad5 100644
--- a/pimd/pim_vxlan.c
+++ b/pimd/pim_vxlan.c
@@ -245,7 +245,7 @@ static void pim_vxlan_orig_mr_up_del(struct pim_vxlan_sg *vxlan_sg)
* for nht
*/
if (up)
- pim_rpf_update(vxlan_sg->pim, up, NULL, 1 /* is_new */);
+ pim_rpf_update(vxlan_sg->pim, up, NULL);
}
}