aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/options.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/udhcp/options.c b/networking/udhcp/options.c
index d394b4c39..0657b3239 100644
--- a/networking/udhcp/options.c
+++ b/networking/udhcp/options.c
@@ -158,8 +158,7 @@ int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data)
158 option[OPT_CODE] = code; 158 option[OPT_CODE] = code;
159 len = option_lengths[dh->flags & TYPE_MASK]; 159 len = option_lengths[dh->flags & TYPE_MASK];
160 option[OPT_LEN] = len; 160 option[OPT_LEN] = len;
161 if (__BYTE_ORDER == __BIG_ENDIAN) 161 if (BB_BIG_ENDIAN) data <<= 8 * (4 - len);
162 data <<= 8 * (4 - len);
163 /* This memcpy is for broken processors which can't 162 /* This memcpy is for broken processors which can't
164 * handle a simple unaligned 32-bit assignment */ 163 * handle a simple unaligned 32-bit assignment */
165 memcpy(&option[OPT_DATA], &data, 4); 164 memcpy(&option[OPT_DATA], &data, 4);