mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 11:24:24 +00:00
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 <mrasool@vmware.com>
This commit is contained in:
parent
d6d890a656
commit
e1f87dce0f
@ -1523,7 +1523,7 @@ static void igmp_show_sources(struct pim_instance *pim, struct vty *vty,
|
|||||||
json = json_object_new_object();
|
json = json_object_new_object();
|
||||||
else
|
else
|
||||||
vty_out(vty,
|
vty_out(vty,
|
||||||
"Interface Address Group Source Timer Fwd Uptime \n");
|
"Interface Group Source Timer Fwd Uptime \n");
|
||||||
|
|
||||||
/* scan interfaces */
|
/* scan interfaces */
|
||||||
FOR_ALL_INTERFACES (pim->vrf, ifp) {
|
FOR_ALL_INTERFACES (pim->vrf, ifp) {
|
||||||
|
Loading…
Reference in New Issue
Block a user