Skip to content

Commit

Permalink
ipops: use proper variable for ipv6 subnet comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Apr 3, 2018
1 parent 1f675c6 commit 162c304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/ipops/ipops_mod.c
Expand Up @@ -415,7 +415,7 @@ int _ip_is_in_subnet_v6(struct in6_addr *ip, char *net, size_t netlen,
else ipv6_mask[i] = 0x00;
}
for (i=0; i<16; i++) ip->s6_addr[i] &= ipv6_mask[i];
if (memcmp(ip->s6_addr, ip->s6_addr, sizeof(net_addr.s6_addr)) == 0)
if (memcmp(ip->s6_addr, net_addr.s6_addr, sizeof(net_addr.s6_addr)) == 0)
return 1;
return 0;
}
Expand Down

0 comments on commit 162c304

Please sign in to comment.