commit f52d74a1a83c4fa30fcab8b318d325bb3c9b5535 Author: Jan Engelhardt Date: Tue Jun 10 14:05:21 2008 +0200 ip6tables: fix printing of ipv6 network masks Signed-off-by: Jan Engelhardt --- xtables.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xtables.c b/xtables.c index 8241687..a97bdaa 100644 --- a/xtables.c +++ b/xtables.c @@ -1011,10 +1011,10 @@ static int ip6addr_prefix_length(const struct in6_addr *k) unsigned int bits = 0; uint32_t a, b, c, d; - a = k->s6_addr32[0]; - b = k->s6_addr32[1]; - c = k->s6_addr32[2]; - d = k->s6_addr32[3]; + a = ntohl(k->s6_addr32[0]); + b = ntohl(k->s6_addr32[1]); + c = ntohl(k->s6_addr32[2]); + d = ntohl(k->s6_addr32[3]); while (a & 0x80000000U) { ++bits; a <<= 1;