[or-cvs] fix a byte order bug

Roger Dingledine arma at seul.org
Mon Mar 15 04:00:13 UTC 2004


Update of /home/or/cvsroot/src/common
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/common

Modified Files:
	util.c 
Log Message:
fix a byte order bug


Index: util.c
===================================================================
RCS file: /home/or/cvsroot/src/common/util.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- util.c	14 Mar 2004 18:07:46 -0000	1.60
+++ util.c	15 Mar 2004 04:00:11 -0000	1.61
@@ -688,7 +688,7 @@
 
 int is_internal_IP(uint32_t ip) {
 
-  if (((ip & 0xff000000) == 0xa0000000) || /*       10/8 */
+  if (((ip & 0xff000000) == 0x0a000000) || /*       10/8 */
       ((ip & 0xff000000) == 0x00000000) || /*        0/8 */
       ((ip & 0xff000000) == 0x7f000000) || /*      127/8 */
       ((ip & 0xffff0000) == 0xa9fe0000) || /* 169.254/16 */



More information about the tor-commits mailing list