[or-cvs] [tor/maint-0.2.1] Use a simpler fix for the byte-reversing warning
Nick Mathewson
nickm at seul.org
Tue Sep 1 19:42:49 UTC 2009
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue, 1 Sep 2009 15:41:38 -0400
Subject: Use a simpler fix for the byte-reversing warning
Commit: 2f0184ece11d6663cb2dd4e161e29dd8861a20af
---
src/common/address.c | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/common/address.c b/src/common/address.c
index 88cbbb7..3e0ea25 100644
--- a/src/common/address.c
+++ b/src/common/address.c
@@ -373,10 +373,11 @@ tor_addr_parse_reverse_lookup_name(tor_addr_t *result, const char *address,
return -1; /* malformed. */
/* reverse the bytes */
- inaddr.s_addr = (((inaddr.s_addr & (uint32_t)0x000000fful) << 24)
- |((inaddr.s_addr & (uint32_t)0x0000ff00ul) << 8)
- |((inaddr.s_addr & (uint32_t)0x00ff0000ul) >> 8)
- |((inaddr.s_addr & (uint32_t)0xff000000ul) >> 24));
+ inaddr.s_addr = (uint32_t)
+ (((inaddr.s_addr & 0x000000fful) << 24)
+ |((inaddr.s_addr & 0x0000ff00ul) << 8)
+ |((inaddr.s_addr & 0x00ff0000ul) >> 8)
+ |((inaddr.s_addr & 0xff000000ul) >> 24));
if (result) {
tor_addr_from_in(result, &inaddr);
--
1.5.6.5
More information about the tor-commits
mailing list