From: Will Mortensen Date: Mon, 19 Oct 2015 03:59:20 +0000 (-0700) Subject: Correctly byteswap DNS lifetimes in RAs X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=bab0f8f6cd1d6badd8d5189dc50aa1692e107a7a;hp=cb1842c117030e6779f9556cd5d86b1a0ef145d7 Correctly byteswap DNS lifetimes in RAs --- diff --git a/src/router.c b/src/router.c index a23b530..526f9c2 100644 --- a/src/router.c +++ b/src/router.c @@ -430,7 +430,7 @@ static uint64_t send_router_advert(struct interface *iface, const struct in6_add minival = (maxival * 3) / 4; - search->lifetime = maxival / 100; + search->lifetime = htonl(maxival / 100); dns.lifetime = search->lifetime; odhcpd_urandom(&msecs, sizeof(msecs));