Index: squid3/include/squid_endian.h diff -c squid3/include/squid_endian.h:1.2 squid3/include/squid_endian.h:1.3 *** squid3/include/squid_endian.h:1.2 Thu Aug 7 07:31:34 2003 --- squid3/include/squid_endian.h Sat Aug 16 17:32:29 2003 *************** *** 84,90 **** # define bswap16(x) bswap_16(x) # else # define bswap16(x) \ ! ((((u_int16_t)x) >> 8) & 0xff) | ((((u_int16_t)x) & 0xff) << 8)) # endif #endif /* ! HAVE_BSWAP16 && ! defined(bswap16) */ #if ! HAVE_BSWAP32 && ! defined(bswap32) --- 84,90 ---- # define bswap16(x) bswap_16(x) # else # define bswap16(x) \ ! (((((u_int16_t)(x)) >> 8) & 0xff) | ((((u_int16_t)(x)) & 0xff) << 8)) # endif #endif /* ! HAVE_BSWAP16 && ! defined(bswap16) */ #if ! HAVE_BSWAP32 && ! defined(bswap32) *************** *** 92,101 **** # define bswap32(x) bswap_32(x) # else # define bswap32(x) \ ! (((((u_int32_t)x) & 0xff000000) >> 24) | \ ! ((((u_int32_t)x) & 0x00ff0000) >> 8) | \ ! ((((u_int32_t)x) & 0x0000ff00) << 8) | \ ! ((((u_int32_t)x) & 0x000000ff) << 24)) # endif #endif /* ! HAVE_BSWAP32 && ! defined(bswap32) */ --- 92,101 ---- # define bswap32(x) bswap_32(x) # else # define bswap32(x) \ ! (((((u_int32_t)(x)) & 0xff000000) >> 24) | \ ! ((((u_int32_t)(x)) & 0x00ff0000) >> 8) | \ ! ((((u_int32_t)(x)) & 0x0000ff00) << 8) | \ ! ((((u_int32_t)(x)) & 0x000000ff) << 24)) # endif #endif /* ! HAVE_BSWAP32 && ! defined(bswap32) */