diff options
| author | mobash-rasool <mobash.rasool@gmail.com> | 2022-11-24 10:56:32 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-24 10:56:32 +0530 |
| commit | 67e2017f84fd06dcfcb8dc2bcfe2085b4462809c (patch) | |
| tree | 3eb1bc9b1f05a925611fecf76ae42f2f95381d04 /pimd/pim_upstream.c | |
| parent | 56a3ac3b5d96e507340cee29467ebf28e868d081 (diff) | |
| parent | f8766ccbf073303ef998a3355136a9f08420033b (diff) | |
Merge pull request #12378 from FRRouting/mergify/bp/stable/8.4/pr-12260
pimd: consistently ignore prefix list mask len (backport #12260)
Diffstat (limited to 'pimd/pim_upstream.c')
| -rw-r--r-- | pimd/pim_upstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index 0742daa4de..dbc5c5d10a 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -2154,7 +2154,7 @@ void pim_upstream_remove_lhr_star_pimreg(struct pim_instance *pim, continue; } pim_addr_to_prefix(&g, up->sg.grp); - apply_new = prefix_list_apply(np, &g); + apply_new = prefix_list_apply_ext(np, NULL, &g, true); if (apply_new == PREFIX_DENY) pim_channel_add_oif(up->channel_oil, pim->regiface, PIM_OIF_FLAG_PROTO_GM, __func__); |
