diff options
author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2019-05-28 17:26:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 17:26:28 +0200 |
commit | bda0241599246636bebde6143f20ccdec5290570 (patch) | |
tree | e67f265032fd4fa91e2cfe00d00c233743c7dc31 /pimd/pim_rpf.c | |
parent | Merge pull request #4322 from sworleys/Nexthop-Cmp (diff) | |
parent | pimd: Enable BSM processing on all interfaces by default (diff) | |
download | frr-bda0241599246636bebde6143f20ccdec5290570.tar.xz frr-bda0241599246636bebde6143f20ccdec5290570.zip |
Merge pull request #4239 from sarav511/rp
pimd: PIM Bootstrap Message Processing
Diffstat (limited to 'pimd/pim_rpf.c')
-rw-r--r-- | pimd/pim_rpf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_rpf.c b/pimd/pim_rpf.c index dba46e63f..d38880245 100644 --- a/pimd/pim_rpf.c +++ b/pimd/pim_rpf.c @@ -238,7 +238,7 @@ enum pim_rpf_result pim_rpf_update(struct pim_instance *pim, if ((up->sg.src.s_addr == INADDR_ANY && I_am_RP(pim, up->sg.grp)) || PIM_UPSTREAM_FLAG_TEST_FHR(up->flags)) neigh_needed = FALSE; - pim_find_or_track_nexthop(pim, &nht_p, up, NULL, NULL); + pim_find_or_track_nexthop(pim, &nht_p, up, NULL, false, NULL); if (!pim_ecmp_nexthop_lookup(pim, &rpf->source_nexthop, &src, &grp, neigh_needed)) return PIM_RPF_FAILURE; |