diff options
-rw-r--r-- | source3/libsmb/namequery.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index 9650b5fc45..e4206e6065 100644 --- a/source3/libsmb/namequery.c +++ b/source3/libsmb/namequery.c @@ -1244,6 +1244,11 @@ static NTSTATUS resolve_hosts(const char *name, int name_type, hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_ADDRCONFIG; +#if !defined(HAVE_IPV6) + /* Unless we have IPv6, we really only want IPv4 addresses back. */ + hints.ai_family = AF_INET; +#endif + ret = getaddrinfo(name, NULL, &hints, |