From ccda4e481c612f939fde0e591c027fb5d08d64ca Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 27 Dec 2008 15:46:16 +0000 Subject: [PATCH] Fix compilation under gethostbyname-based systems. svn:r17800 --- src/common/address.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/address.c b/src/common/address.c index d64a6f8f15..3f2103c1ce 100644 --- a/src/common/address.c +++ b/src/common/address.c @@ -225,7 +225,7 @@ tor_addr_lookup(const char *name, uint16_t family, tor_addr_t *addr) if (ent->h_addrtype == AF_INET) { tor_addr_from_in(addr, (struct in_addr*) ent->h_addr); } else if (ent->h_addrtype == AF_INET6) { - tor_addr_from_in(addr, (struct in6_addr*) ent->h_addr); + tor_addr_from_in6(addr, (struct in6_addr*) ent->h_addr); } else { tor_assert(0); /* gethostbyname() returned a bizarre addrtype */ }