From 92c433a7228ece0d0ce208728d3edf155a3b3398 Mon Sep 17 00:00:00 2001 From: ume Date: Tue, 15 Nov 2005 03:40:15 +0000 Subject: The KAME's getipnodebyaddr() code honor the MULTI_PTRS_ARE_ALIASES define also, but res_config.h was not included into libc/net/name6.c. So getipnodebyaddr() ignored the multiple PTRs. PR: kern/88241 Submitted by: Dan Lukes MFC after: 3 days --- lib/libc/net/name6.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libc/net/name6.c b/lib/libc/net/name6.c index 9de33ed..4e85933 100644 --- a/lib/libc/net/name6.c +++ b/lib/libc/net/name6.c @@ -121,6 +121,7 @@ __FBSDID("$FreeBSD$"); #include #include "un-namespace.h" #include "netdb_private.h" +#include "res_config.h" #ifndef _PATH_HOSTS #define _PATH_HOSTS "/etc/hosts" -- cgit v1.1