From 928268064f1ccaf8d4a4c249dfc35eb8c59dce96 Mon Sep 17 00:00:00 2001 From: Hajimu UMEMOTO Date: Mon, 19 Feb 2001 13:13:51 +0000 Subject: Enable AI_ADDRCONFIG as a valid flag of getaddrinfo(3). Some applications specify AI_ADDRCONFIG and fail to run under FreeBSD. Latest mews is known. Now, getaddrinfo(3) behaves according to AI_ADDRCONFIG. --- lib/libc/net/getaddrinfo.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib') diff --git a/lib/libc/net/getaddrinfo.c b/lib/libc/net/getaddrinfo.c index 9e498e5d70bd..a06114b55320 100644 --- a/lib/libc/net/getaddrinfo.c +++ b/lib/libc/net/getaddrinfo.c @@ -82,7 +82,6 @@ * - AI_ADDRCONFIG support is supplied * - EDNS0 support is not available due to resolver differences * - some of FreeBSD style (#define tabify and others) - * - AI_ADDRCONFIG is turned on by default. * - classful IPv4 numeric (127.1) is allowed. */ @@ -522,10 +521,6 @@ getaddrinfo(hostname, servname, hints, res) if (hostname == NULL) ERR(EAI_NODATA); -#if 1 - /* XXX: temporarily, behave as if AI_ADDRCONFIG is specified */ - pai->ai_flags |= AI_ADDRCONFIG; -#endif if ((pai->ai_flags & AI_ADDRCONFIG) != 0 && !addrconfig(&ai0)) ERR(EAI_FAIL); -- cgit v1.3