ipv6 address for test.hosts.dots in wrong byte order.

Approved by:	glebius (mentor)
Obtained from:	ipfilter CVS repo (r1.11), netbsd CVS repo (r1.5)
This commit is contained in:
cy 2014-09-22 16:03:29 +00:00
parent 9abf6bc2c9
commit 5d69c962d9

View File

@ -25,10 +25,10 @@ int gethost(family, name, hostp)
}
#ifdef USE_INET6
if (family == AF_INET6) {
hostp->i6[0] = 0xfe80aa55;
hostp->i6[1] = 0x12345678;
hostp->i6[2] = 0x5a5aa5a5;
hostp->i6[3] = 0xfedcba98;
hostp->i6[0] = htonl(0xfe80aa55);
hostp->i6[1] = htonl(0x12345678);
hostp->i6[2] = htonl(0x5a5aa5a5);
hostp->i6[3] = htonl(0xfedcba98);
}
#endif
return 0;