X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fsubnet.c;h=a4ec2b31b9e14d996dd5b4f58f45ef4e745ba1b3;hp=4ac625da37af7ee8de7769da381cf44e7264e5a3;hb=ddcf079cad3351f0823fc07af15787d02e5f1901;hpb=de78d79db84c486afcc353884ec1770866beb653 diff --git a/src/subnet.c b/src/subnet.c index 4ac625da..a4ec2b31 100644 --- a/src/subnet.c +++ b/src/subnet.c @@ -342,7 +342,7 @@ subnet_t *lookup_subnet_ipv4(const ipv4_t *address) break; } - if(!maskcmp(address, &p->net.ipv4.address, p->net.ipv4.prefixlength, sizeof(ipv4_t))) + if(!maskcmp(address, &p->net.ipv4.address, p->net.ipv4.prefixlength)) break; else { /* Otherwise, see if there is a bigger enclosing subnet */ @@ -378,7 +378,7 @@ subnet_t *lookup_subnet_ipv6(const ipv6_t *address) if(p->type != SUBNET_IPV6) return NULL; - if(!maskcmp(address, &p->net.ipv6.address, p->net.ipv6.prefixlength, sizeof(ipv6_t))) + if(!maskcmp(address, &p->net.ipv6.address, p->net.ipv6.prefixlength)) break; else { /* Otherwise, see if there is a bigger enclosing subnet */