Skip to content

Commit

Permalink
Merge pull request #7007 from Jafaral/pim-dup-7.3
Browse files Browse the repository at this point in the history
[7.3] pimd: fix IGMP querier election
  • Loading branch information
donaldsharp committed Aug 27, 2020
2 parents 1cb5473 + 32d702d commit f162e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pimd/pim_igmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ static int igmp_recv_query(struct igmp_sock *igmp, int query_version,
return 0;
}

if (if_lookup_address(&from, AF_INET, ifp->vrf_id)) {
if (if_lookup_exact_address(&from, AF_INET, ifp->vrf_id)) {
if (PIM_DEBUG_IGMP_PACKETS)
zlog_debug("Recv IGMP query on interface: %s from ourself %s",
ifp->name, from_str);
Expand Down

0 comments on commit f162e22

Please sign in to comment.