diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2025-04-04 00:12:48 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-04 00:12:48 -0500 |
| commit | 4b81bbbac3619980b0d0a04cce8e1aa96c6b878c (patch) | |
| tree | 4e5c12381e6fe757885b422fb4566658e451748a | |
| parent | e7e7dcef34d42292db9044f4cf4923bb9706c771 (diff) | |
| parent | e050e4134d3d0c6f6f6138bfe48bfca2ff459169 (diff) | |
Merge pull request #18577 from FRRouting/mergify/bp/stable/10.2/pr-18567
pimd: Initialize gm proxy to false (backport #18567)
| -rw-r--r-- | pimd/pim_iface.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c index 697d8df598..2642316c7d 100644 --- a/pimd/pim_iface.c +++ b/pimd/pim_iface.c @@ -144,6 +144,7 @@ struct pim_interface *pim_if_new(struct interface *ifp, bool gm, bool pim, pim_ifp->pim_enable = pim; pim_ifp->pim_passive_enable = false; pim_ifp->gm_enable = gm; + pim_ifp->gm_proxy = false; pim_ifp->gm_join_list = NULL; pim_ifp->static_group_list = NULL; |
