Skip to content

Commit 7b85369

Browse files
authored
Merge pull request FRRouting#13863 from FRRouting/mergify/bp/dev/9.0/pr-13854
zebra: fix evpn rmac nh list cmp function (backport FRRouting#13854)
2 parents bf952f8 + b05dd98 commit 7b85369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zebra/zebra_vxlan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ static int l3vni_rmac_nh_list_cmp(void *p1, void *p2)
194194
const struct ipaddr *vtep_ip1 = p1;
195195
const struct ipaddr *vtep_ip2 = p2;
196196

197-
return !ipaddr_cmp(vtep_ip1, vtep_ip2);
197+
return ipaddr_cmp(vtep_ip1, vtep_ip2);
198198
}
199199

200200
static void l3vni_rmac_nh_free(struct ipaddr *vtep_ip)

0 commit comments

Comments
 (0)