gnutls: do not use uclibc's AI_IDN; it doesn't like it

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
This commit is contained in:
Nikos Mavrogiannopoulos 2014-09-18 21:27:47 +02:00
parent 116eae8922
commit d8ac4fd0a5
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
diff --git a/src/socket.c b/src/socket.c
index 82c6252..e2feda9 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -241,10 +241,6 @@ socket_open(socket_st * hd, const char *hostname, const char *service,
/* get server name */
memset(&hints, 0, sizeof(hints));
-#ifdef AI_IDN
- hints.ai_flags = AI_IDN|AI_IDN_ALLOW_UNASSIGNED;
-#endif
-
hints.ai_socktype = udp ? SOCK_DGRAM : SOCK_STREAM;
if ((err = getaddrinfo(hostname, service, &hints, &res))) {
fprintf(stderr, "Cannot resolve %s:%s: %s\n", hostname,