1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Fix typo in comment.

This commit is contained in:
hniksic 2005-06-17 11:30:05 -07:00
parent e2e349b2ca
commit 25cbd9f692

View File

@ -767,9 +767,9 @@ lookup_host (const char *host, int flags)
else if (opt.ipv6_only) else if (opt.ipv6_only)
hints.ai_family = AF_INET6; hints.ai_family = AF_INET6;
else else
/* We used to specify AI_ADDRCONFIG here, but removed it because /* We tried using AI_ADDRCONFIG, but removed it because: it
it fails in on systems with IPv6 loopbacks, it loses on AIX misinterprets IPv6 loopbacks, it is broken on AIX 5.1, and
5.1, and isn't really needed as we sort the addresses). */ it's unneeded since we sort the addresses anyway. */
hints.ai_family = AF_UNSPEC; hints.ai_family = AF_UNSPEC;
if (flags & LH_BIND) if (flags & LH_BIND)