From e1f87dce0f530b3562a5c4f7980404afb7e5791b Mon Sep 17 00:00:00 2001 From: Mobashshera Rasool Date: Mon, 11 Apr 2022 00:14:22 -0700 Subject: [PATCH] pimd: correct the show ip igmp sources output frr(config-if)# ip igmp join 232.1.1.1 10.10.10.10 frr(config-if)# do sh ip igmp sources Interface Address Group Source Timer Fwd Uptime ens192 232.1.1.1 10.10.10.10 04:10 N 00:00:10 frr(config-if)# The above output is misaligned and is having Address field which is not required here. Fixing it. Signed-off-by: Mobashshera Rasool --- pimd/pim_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index 78fc975787..da4069abb3 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -1523,7 +1523,7 @@ static void igmp_show_sources(struct pim_instance *pim, struct vty *vty, json = json_object_new_object(); else vty_out(vty, - "Interface Address Group Source Timer Fwd Uptime \n"); + "Interface Group Source Timer Fwd Uptime \n"); /* scan interfaces */ FOR_ALL_INTERFACES (pim->vrf, ifp) { -- 2.39.5