aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
Diffstat (limited to 'networking')
-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)
option[OPT_CODE] = code;
len = option_lengths[dh->flags & TYPE_MASK];
option[OPT_LEN] = len;
- if (__BYTE_ORDER == __BIG_ENDIAN)
- data <<= 8 * (4 - len);
+ if (BB_BIG_ENDIAN) data <<= 8 * (4 - len);
/* This memcpy is for broken processors which can't
* handle a simple unaligned 32-bit assignment */
memcpy(&option[OPT_DATA], &data, 4);