Browse Source

r13856@catbus: nickm | 2007-07-20 14:30:44 -0400
slightly smarter heuristic about when to use obsolete ::a.b.c.d format.


svn:r10893

Nick Mathewson 17 years ago
parent
commit
8e50aa7341
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/compat.c

+ 1 - 1
src/common/compat.c

@@ -834,7 +834,7 @@ tor_inet_ntop(int af, const void *src, char *dst, size_t len)
       words[i] = (((uint16_t)addr->s6_addr[2*i])<<8) + addr->s6_addr[2*i+1];
     }
     if (words[0] == 0 && words[1] == 0 && words[2] == 0 && words[3] == 0 &&
-        words[4] == 0 && ((words[5] == 0 && (words[6] || words[7])) ||
+        words[4] == 0 && ((words[5] == 0 && words[6] && words[7]) ||
                           (words[5] == 0xffff))) {
       /* This is an IPv4 address. */
       if (words[5] == 0) {