Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-07-13 17:15:04 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2022-07-13 17:15:04 +0300
commit9b6eb2a8ef4f1cfeeea821e270d49ef9c6ae4503 (patch)
tree500aa21a5506a87329043a6b6b3304ab3d44a4fc /networking
parent7b969bb2ada4d7757229fd735135f7720ef8008c (diff)
udhcpc6: add missed big-endian conversions
function old new delta option_to_env 686 694 +8 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-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)
*new_env() = xasprintf("ipv6=%s", ipv6str);
move_from_unaligned32(v32, option + 4 + 16 + 4);
+ v32 = ntohl(v32);
*new_env() = xasprintf("lease=%u", (unsigned)v32);
break;
@@ -332,6 +333,7 @@ static void option_to_env(const uint8_t *option, const uint8_t *option_end)
* +-+-+-+-+-+-+-+-+
*/
move_from_unaligned32(v32, option + 4 + 4);
+ v32 = ntohl(v32);
*new_env() = xasprintf("ipv6prefix_lease=%u", (unsigned)v32);
sprint_nip6(ipv6str, option + 4 + 4 + 4 + 1);