diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-15 16:50:08 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-21 20:26:10 -0500 |
| commit | 4a40c37aa4d4a4480e992bfa5b3e9234abc90c61 (patch) | |
| tree | 7f9bb8abffb1eb0fc24ccf2a4003fc59f237e9b2 /pimd/pim_assert.c | |
| parent | a6dc7de682358d6399100f1288acece81a163de8 (diff) | |
pimd: Further work to fix rpf lookups and nbrs
When we do a RPF lookup return a path that we have
neighbors for in those cases where we need to have
a neighbor to pass along the SG state via a pim
join/prune message.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_assert.c')
| -rw-r--r-- | pimd/pim_assert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_assert.c b/pimd/pim_assert.c index 1add2ebb00..481a2851d5 100644 --- a/pimd/pim_assert.c +++ b/pimd/pim_assert.c @@ -150,7 +150,7 @@ static int dispatch_assert(struct interface *ifp, memset (&sg, 0, sizeof (struct prefix_sg)); sg.src = source_addr; sg.grp = group_addr; - ch = pim_ifchannel_add(ifp, &sg); + ch = pim_ifchannel_add(ifp, &sg, 0); if (!ch) { zlog_warn("%s: (S,G)=%s failure creating channel on interface %s", __PRETTY_FUNCTION__, |
