From 25cbd9f69264243c8e303c94eebc1c477a733e64 Mon Sep 17 00:00:00 2001 From: hniksic Date: Fri, 17 Jun 2005 11:30:05 -0700 Subject: [PATCH] [svn] Fix typo in comment. --- src/host.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/host.c b/src/host.c index af736dab..53a351e9 100644 --- a/src/host.c +++ b/src/host.c @@ -767,9 +767,9 @@ lookup_host (const char *host, int flags) else if (opt.ipv6_only) hints.ai_family = AF_INET6; else - /* We used to specify AI_ADDRCONFIG here, but removed it because - it fails in on systems with IPv6 loopbacks, it loses on AIX - 5.1, and isn't really needed as we sort the addresses). */ + /* We tried using AI_ADDRCONFIG, but removed it because: it + misinterprets IPv6 loopbacks, it is broken on AIX 5.1, and + it's unneeded since we sort the addresses anyway. */ hints.ai_family = AF_UNSPEC; if (flags & LH_BIND)