diff options
author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-06-30 10:17:26 +0200 |
---|---|---|
committer | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-06-30 10:49:54 +0200 |
commit | 229a20e2adaadfce5a196428439d92c19d35711e (patch) | |
tree | f0f30570f8bcb2792188d659637373109d86522d /pimd/pim_vty.c | |
parent | Merge pull request #11428 from SaiGomathiN/pimdebug (diff) | |
download | frr-229a20e2adaadfce5a196428439d92c19d35711e.tar.xz frr-229a20e2adaadfce5a196428439d92c19d35711e.zip |
pimd: Modifying member of pim_instance to accomodate IPv6 changes
Modifying igmp_watermark_limit of struct pim_instance
to gm_watermark_limit which is to be used for both IGMP and MLD.
Signed-off-by: Sai Gomathi N <nsaigomathi@vmware.com>
Diffstat (limited to '')
-rw-r--r-- | pimd/pim_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 4dd139873..b00c25a48 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -260,9 +260,9 @@ int pim_global_config_write_worker(struct pim_instance *pim, struct vty *vty) ++writes; } - if (pim->igmp_watermark_limit != 0) { + if (pim->gm_watermark_limit != 0) { vty_out(vty, "%sip igmp watermark-warn %u\n", spaces, - pim->igmp_watermark_limit); + pim->gm_watermark_limit); ++writes; } |