aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/d6_dhcpc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c
index 9fc690315..d4cdd0c3a 100644
--- a/networking/udhcp/d6_dhcpc.c
+++ b/networking/udhcp/d6_dhcpc.c
@@ -295,6 +295,7 @@ static void option_to_env(const uint8_t *option, const uint8_t *option_end)
295 *new_env() = xasprintf("ipv6=%s", ipv6str); 295 *new_env() = xasprintf("ipv6=%s", ipv6str);
296 296
297 move_from_unaligned32(v32, option + 4 + 16 + 4); 297 move_from_unaligned32(v32, option + 4 + 16 + 4);
298 v32 = ntohl(v32);
298 *new_env() = xasprintf("lease=%u", (unsigned)v32); 299 *new_env() = xasprintf("lease=%u", (unsigned)v32);
299 break; 300 break;
300 301
@@ -332,6 +333,7 @@ static void option_to_env(const uint8_t *option, const uint8_t *option_end)
332 * +-+-+-+-+-+-+-+-+ 333 * +-+-+-+-+-+-+-+-+
333 */ 334 */
334 move_from_unaligned32(v32, option + 4 + 4); 335 move_from_unaligned32(v32, option + 4 + 4);
336 v32 = ntohl(v32);
335 *new_env() = xasprintf("ipv6prefix_lease=%u", (unsigned)v32); 337 *new_env() = xasprintf("ipv6prefix_lease=%u", (unsigned)v32);
336 338
337 sprint_nip6(ipv6str, option + 4 + 4 + 4 + 1); 339 sprint_nip6(ipv6str, option + 4 + 4 + 4 + 1);