diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-02 18:25:57 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-07 13:27:29 -0400 |
| commit | ae14da4860df6bcffd848ee765d3db4750a4c23f (patch) | |
| tree | dfef2923862eb6e9519468dc634d7be0ee22a809 /pimd/pim_nht.c | |
| parent | 3f759ec92f402476be506cd8d0c946709f9e530e (diff) | |
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_nht.c')
| -rw-r--r-- | pimd/pim_nht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_nht.c b/pimd/pim_nht.c index 1a2f451524..65ea858cb6 100644 --- a/pimd/pim_nht.c +++ b/pimd/pim_nht.c @@ -447,7 +447,7 @@ static int pim_update_upstream_nh_helper(struct hash_bucket *bucket, void *arg) struct pim_rpf old; old.source_nexthop.interface = up->rpf.source_nexthop.interface; - rpf_result = pim_rpf_update(pim, up, &old, 0); + rpf_result = pim_rpf_update(pim, up, &old); if (rpf_result == PIM_RPF_FAILURE) { pim_upstream_rpf_clear(pim, up); return HASHWALK_CONTINUE; |
