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_upstream.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_upstream.c')
| -rw-r--r-- | pimd/pim_upstream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index 44b8ecbfea..50c68c66bd 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -749,7 +749,7 @@ static struct pim_upstream *pim_upstream_new(struct pim_instance *pim, up->channel_oil = pim_channel_oil_add(pim, &up->sg, MAXVIFS); } else { - rpf_result = pim_rpf_update(pim, up, NULL, 1); + rpf_result = pim_rpf_update(pim, up, NULL); if (rpf_result == PIM_RPF_FAILURE) { if (PIM_DEBUG_TRACE) zlog_debug( @@ -1625,7 +1625,7 @@ void pim_upstream_find_new_rpf(struct pim_instance *pim) zlog_debug( "%s: Upstream %s without a path to send join, checking", __PRETTY_FUNCTION__, up->sg_str); - pim_rpf_update(pim, up, NULL, 1); + pim_rpf_update(pim, up, NULL); } } } |
