Use a simpler fix for the byte-reversing warning

This commit is contained in:
Nick Mathewson 2009-09-01 15:41:38 -04:00
parent aea9cf1011
commit 2f0184ece1

View File

@ -373,10 +373,11 @@ tor_addr_parse_reverse_lookup_name(tor_addr_t *result, const char *address,
return -1; /* malformed. */ return -1; /* malformed. */
/* reverse the bytes */ /* reverse the bytes */
inaddr.s_addr = (((inaddr.s_addr & (uint32_t)0x000000fful) << 24) inaddr.s_addr = (uint32_t)
|((inaddr.s_addr & (uint32_t)0x0000ff00ul) << 8) (((inaddr.s_addr & 0x000000fful) << 24)
|((inaddr.s_addr & (uint32_t)0x00ff0000ul) >> 8) |((inaddr.s_addr & 0x0000ff00ul) << 8)
|((inaddr.s_addr & (uint32_t)0xff000000ul) >> 24)); |((inaddr.s_addr & 0x00ff0000ul) >> 8)
|((inaddr.s_addr & 0xff000000ul) >> 24));
if (result) { if (result) {
tor_addr_from_in(result, &inaddr); tor_addr_from_in(result, &inaddr);