diff options
author | Steven Barth <steven@midlink.org> | 2015-10-21 08:07:52 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-10-21 08:07:52 +0200 |
commit | b1c0c6664ed01d9643975bafb3026d699bd5e266 (patch) | |
tree | a94826aa630927d579e21fbf39f01e570391df87 | |
parent | cb1842c117030e6779f9556cd5d86b1a0ef145d7 (diff) | |
parent | bab0f8f6cd1d6badd8d5189dc50aa1692e107a7a (diff) |
Merge pull request #62 from willmo/dns-lifetime
Correctly byteswap DNS lifetimes in RAs
-rw-r--r-- | src/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |