mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 16:20:08 +00:00
pimd, pim6d: Removing unused parameter
Signed-off-by: Abhishek N R <abnr@vmware.com>
This commit is contained in:
parent
c8e1ce6278
commit
38ec10a14a
@ -3817,7 +3817,6 @@ void show_mroute(struct pim_instance *pim, struct vty *vty, pim_sgaddr *sg,
|
||||
|
||||
static void show_mroute_count_per_channel_oil(struct channel_oil *c_oil,
|
||||
json_object *json,
|
||||
struct vty *vty,
|
||||
struct ttable *tt)
|
||||
{
|
||||
json_object *json_group = NULL;
|
||||
@ -3885,10 +3884,10 @@ void show_mroute_count(struct pim_instance *pim, struct vty *vty,
|
||||
|
||||
/* Print PIM and IGMP route counts */
|
||||
frr_each (rb_pim_oil, &pim->channel_oil_head, c_oil)
|
||||
show_mroute_count_per_channel_oil(c_oil, json, vty, tt);
|
||||
show_mroute_count_per_channel_oil(c_oil, json, tt);
|
||||
|
||||
for (ALL_LIST_ELEMENTS_RO(pim->static_routes, node, sr))
|
||||
show_mroute_count_per_channel_oil(&sr->c_oil, json, vty, tt);
|
||||
show_mroute_count_per_channel_oil(&sr->c_oil, json, tt);
|
||||
|
||||
/* Dump the generated table. */
|
||||
if (!json) {
|
||||
|
Loading…
Reference in New Issue
Block a user