diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2022-04-20 07:43:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-20 07:43:09 -0400 |
| commit | 831a15d3e3352ffe84e3a30144f4fe96f191dd62 (patch) | |
| tree | 90ff686158935fad6a4080ead6375c038752bb7e /pimd/pim_mroute.c | |
| parent | 3d3c38b1d44f4d6f6f04a81fca70fc7ac195812a (diff) | |
| parent | 80a82b567fd98fa8cf12cbdefab25e13f56d655f (diff) | |
Merge pull request #11023 from AbhishekNR/igmp_flag
pimd: Changing PIM_OIF_FLAG_PROTO_IGMP to PIM_OIF_FLAG_PROTO_GM
Diffstat (limited to 'pimd/pim_mroute.c')
| -rw-r--r-- | pimd/pim_mroute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_mroute.c b/pimd/pim_mroute.c index 3015c4a61b..43d05dfe9c 100644 --- a/pimd/pim_mroute.c +++ b/pimd/pim_mroute.c @@ -739,8 +739,8 @@ bool pim_mroute_allow_iif_in_oil(struct channel_oil *c_oil, pim_ifp = ifp_out->info; if (!pim_ifp) return false; - if ((c_oil->oif_flags[oif_index] & PIM_OIF_FLAG_PROTO_IGMP) && - PIM_I_am_DR(pim_ifp)) + if ((c_oil->oif_flags[oif_index] & PIM_OIF_FLAG_PROTO_GM) && + PIM_I_am_DR(pim_ifp)) return true; return false; |
