diff options
author | Denys Vlasenko | 2018-01-16 16:00:13 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-01-16 16:00:13 +0100 |
commit | 688cb3bc1979bad4236315517a7c7bb3a51289f1 (patch) | |
tree | fb6dcec85fd16cdb9a6865e2d9243bd005167a11 /networking | |
parent | 1750d3afc142f467b78ca3557dcf735b5988cf74 (diff) | |
download | busybox-688cb3bc1979bad4236315517a7c7bb3a51289f1.zip busybox-688cb3bc1979bad4236315517a7c7bb3a51289f1.tar.gz |
udhcpc6: fix ipv6prefix[_lease] envvar value in script invocation
Based on a patch by DannyAAM <danny@saru.moe>.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/d6_dhcpc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c index 37ffd06..65ff5de 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: { |