summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-04-08 16:40:51 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-04-09 09:45:58 +0200
commitcb232b13deff65ab3479f4b79af2b1de373be27d (patch)
treea0ef2ef1bc9858f32d22c925f52a962209faa81b
parent07778542b3c7bff1391783fdbb2e995264509e81 (diff)
downloadcurl-cb232b13deff65ab3479f4b79af2b1de373be27d.tar.gz
server/resolve: remove AI_CANONNAME to make macos tell the truth
With this bit set, my mac successfully resolves "ip6-localhost" when in fact there is no such host known to my machine! That in turn made test 241 wrongly execute and fail. Closes #5202
-rw-r--r--tests/server/resolve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/resolve.c b/tests/server/resolve.c
index fe3cca1b2..f72561879 100644
--- a/tests/server/resolve.c
+++ b/tests/server/resolve.c
@@ -127,7 +127,7 @@ int main(int argc, char *argv[])
memset(&hints, 0, sizeof(hints));
hints.ai_family = use_ipv6 ? PF_INET6 : PF_INET;
hints.ai_socktype = SOCK_STREAM;
- hints.ai_flags = AI_CANONNAME;
+ hints.ai_flags = 0;
/* Use parenthesis around functions to stop them from being replaced by
the macro in memdebug.h */
rc = (getaddrinfo)(host, "80", &hints, &ai);