From c8b360ebb75ff41a5263828a591e7c0932ea944e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 31 May 2006 22:24:33 +0000 Subject: Use BB endianness macro. --- networking/udhcp/options.c | 3 +-- 1 file changed, 1 insertion(+), 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); -- cgit v1.2.3