diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2022-02-26 08:03:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-26 08:03:06 -0500 |
| commit | 3bf65aa1ae5fb69bf97c6dc54775a25c13cc4c59 (patch) | |
| tree | 4ea94e01cadb3d0209ad8abdd7fd584b26c55918 /pimd/pim_vty.c | |
| parent | 356f95a8908174cd2b10e2365eee5a0eae89dcb0 (diff) | |
| parent | ae449dc594e837eaf7eb36de37097d59ad586280 (diff) | |
Merge pull request #10400 from opensourcerouting/pim6-compilefix
pim6d: get running with ipv6 types throughout
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 8130aac872..b452b024ed 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -397,6 +397,7 @@ int pim_interface_config_write(struct vty *vty) ++writes; } +#if PIM_IPV == 4 /* IF ip igmp join */ if (pim_ifp->gm_join_list) { struct listnode *node; @@ -428,6 +429,7 @@ int pim_interface_config_write(struct vty *vty) ++writes; } } +#endif /* PIM_IPV == 4 */ if (pim_ifp->activeactive) vty_out(vty, " ip pim active-active\n"); |
