Skip to content

Commit

Permalink
Merge pull request FRRouting#13863 from FRRouting/mergify/bp/dev/9.0/…
Browse files Browse the repository at this point in the history
…pr-13854

zebra: fix evpn rmac nh list cmp function (backport FRRouting#13854)
  • Loading branch information
ton31337 authored Jun 28, 2023
2 parents bf952f8 + b05dd98 commit 7b85369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zebra/zebra_vxlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static int l3vni_rmac_nh_list_cmp(void *p1, void *p2)
const struct ipaddr *vtep_ip1 = p1;
const struct ipaddr *vtep_ip2 = p2;

return !ipaddr_cmp(vtep_ip1, vtep_ip2);
return ipaddr_cmp(vtep_ip1, vtep_ip2);
}

static void l3vni_rmac_nh_free(struct ipaddr *vtep_ip)
Expand Down

0 comments on commit 7b85369

Please sign in to comment.