aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/d6_dhcpc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c
index 37ffd064d..65ff5deab 100644
--- a/networking/udhcp/d6_dhcpc.c
+++ b/networking/udhcp/d6_dhcpc.c
@@ -277,11 +277,11 @@ static void option_to_env(uint8_t *option, uint8_t *option_end)
* | |
* +-+-+-+-+-+-+-+-+
*/
- //move_from_unaligned32(v32, option + 4 + 4);
- //*new_env() = xasprintf("lease=%u", (unsigned)v32);
+ move_from_unaligned32(v32, option + 4 + 4);
+ *new_env() = xasprintf("ipv6prefix_lease=%u", (unsigned)v32);
- sprint_nip6(ipv6str, option + 4 + 4 + 1);
- *new_env() = xasprintf("ipv6prefix=%s/%u", ipv6str, (unsigned)(option[4 + 4]));
+ sprint_nip6(ipv6str, option + 4 + 4 + 4 + 1);
+ *new_env() = xasprintf("ipv6prefix=%s/%u", ipv6str, (unsigned)(option[4 + 4 + 4]));
break;
#if ENABLE_FEATURE_UDHCPC6_RFC3646
case D6_OPT_DNS_SERVERS: {