summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2009-02-12 19:36:04 +0000
committerBart De Schuymer <bdschuym@pandora.be>2009-02-12 19:36:04 +0000
commitc93795be92594a0c5bf59f3aeece427b9d563420 (patch)
tree3b53832505018f26250c5b780b8cff9190274562
parenta9dfd89ee7fd8a31fc0f5b81a01e8395ccffcf4a (diff)
make it compile for me
-rw-r--r--userspace/ebtables2/useful_functions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/userspace/ebtables2/useful_functions.c b/userspace/ebtables2/useful_functions.c
index d8f3434..d20b68e 100644
--- a/userspace/ebtables2/useful_functions.c
+++ b/userspace/ebtables2/useful_functions.c
@@ -371,7 +371,7 @@ static struct in6_addr *parse_ip6_mask(char *mask)
/* Set the ipv6 mask and address. Callers should check ebt_errormsg[0].
* The string pointed to by address can be altered. */
-void ebt_parse_ip6_address(char *address, struct in6_addr *addr,
+void ebt_parse_ip6_address(char *address, struct in6_addr *addr,
struct in6_addr *msk)
{
struct in6_addr *tmp_addr;
@@ -400,7 +400,7 @@ void ebt_parse_ip6_address(char *address, struct in6_addr *addr,
}
for (i = 0; i < 4; i++)
- addr->in6_u.u6_addr32[i] &= msk->in6_u.u6_addr32[i];
+ addr->s6_addr32[i] &= msk->s6_addr32[i];
}
/* Transform the ip6 addr into a string ready for output. */