summaryrefslogtreecommitdiffstats
path: root/lib/ipv6.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ipv6.c')
-rw-r--r--lib/ipv6.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ipv6.c b/lib/ipv6.c
index c057600..3c01a4f 100644
--- a/lib/ipv6.c
+++ b/lib/ipv6.c
@@ -112,9 +112,11 @@ ipv6_ntoh(ip_addr *a)
}
int
-ipv6_compare(ip_addr *x, ip_addr *y)
+ipv6_compare(ip_addr X, ip_addr Y)
{
int i;
+ ip_addr *x = &X;
+ ip_addr *y = &Y;
for(i=0; i<4; i++)
if (x->addr[i] > y->addr[i])