diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-21 07:03:25 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-21 07:03:25 +0000 |
commit | ac47326a5c217c337ad200c9af83578a02d8ad93 (patch) | |
tree | f9771f439eb1cfaa14bec95007eb2303a4c64fbc /libc/inet/getaddrinfo.c | |
parent | de2abcca5af59ebc11f66fb6fb491e16f50c8166 (diff) |
Cleanup use of in6addr_loopback and in6addr_any
Diffstat (limited to 'libc/inet/getaddrinfo.c')
-rw-r--r-- | libc/inet/getaddrinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/getaddrinfo.c b/libc/inet/getaddrinfo.c index 70bdfbbd1..a2f595a6e 100644 --- a/libc/inet/getaddrinfo.c +++ b/libc/inet/getaddrinfo.c @@ -585,7 +585,7 @@ gaih_inet (const char *name, const struct gaih_service *service, { at->family = AF_INET6; if ((req->ai_flags & AI_PASSIVE) == 0) - memcpy (at->addr, &in6addr_loopback, sizeof (struct in6_addr)); + memcpy (at->addr, &__in6addr_loopback, sizeof (struct in6_addr)); atr = at->next; } #endif |