diff options
author | Rob Landley <rob@landley.net> | 2006-05-31 22:24:33 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-31 22:24:33 +0000 |
commit | c8b360ebb75ff41a5263828a591e7c0932ea944e (patch) | |
tree | 4716a4ca09faa9eab9b32650532fbb42bc5d0027 | |
parent | b623a542dff149151c892344e2343a9e245275de (diff) | |
download | busybox-w32-c8b360ebb75ff41a5263828a591e7c0932ea944e.tar.gz busybox-w32-c8b360ebb75ff41a5263828a591e7c0932ea944e.tar.bz2 busybox-w32-c8b360ebb75ff41a5263828a591e7c0932ea944e.zip |
Use BB endianness macro.
-rw-r--r-- | networking/udhcp/options.c | 3 |
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); |