mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
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
This commit is contained in:
parent
9bfe9cfb40
commit
8e50aa7341
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user