mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-14 12:52:37 +00:00
pimd: Fix broken build
I missed 2 instances of the conversion from struct prefix to struct prefix_sg Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
565fdc7525
commit
02e6923ef3
@ -951,7 +951,7 @@ void igmp_source_forward_start(struct igmp_source *source)
|
||||
struct prefix_sg sg;
|
||||
int result;
|
||||
|
||||
memset (&sg, 0, sizeof (struct prefix));
|
||||
memset (&sg, 0, sizeof (struct prefix_sg));
|
||||
sg.src = source->source_addr;
|
||||
sg.grp = source->source_group->group_addr;
|
||||
|
||||
@ -1059,7 +1059,7 @@ void igmp_source_forward_stop(struct igmp_source *source)
|
||||
struct prefix_sg sg;
|
||||
int result;
|
||||
|
||||
memset (&sg, 0, sizeof (struct prefix));
|
||||
memset (&sg, 0, sizeof (struct prefix_sg));
|
||||
sg.src = source->source_addr;
|
||||
sg.grp = source->source_group->group_addr;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user