gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 152/264: server/resolve: remove AI_CANONNAME to make macos tell


From: gnunet
Subject: [gnurl] 152/264: server/resolve: remove AI_CANONNAME to make macos tell the truth
Date: Thu, 30 Apr 2020 16:07:35 +0200

This is an automated email from the git hooks/post-receive script.

nikita pushed a commit to branch master
in repository gnurl.

commit cb232b13deff65ab3479f4b79af2b1de373be27d
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Apr 8 16:40:51 2020 +0200

    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
---
 tests/server/resolve.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]