12 lines
610 B
Diff
12 lines
610 B
Diff
|
diff -up openssh-5.8p1/sshconnect.c.getaddrinfo openssh-5.8p1/sshconnect.c
|
||
|
--- openssh-5.8p1/sshconnect.c.getaddrinfo 2011-04-27 09:51:44.521384633 +0200
|
||
|
+++ openssh-5.8p1/sshconnect.c 2011-04-27 09:53:21.224443308 +0200
|
||
|
@@ -355,6 +355,7 @@ ssh_connect(const char *host, struct soc
|
||
|
memset(&hints, 0, sizeof(hints));
|
||
|
hints.ai_family = family;
|
||
|
hints.ai_socktype = SOCK_STREAM;
|
||
|
+ hints.ai_flags = AI_V4MAPPED | AI_ADDRCONFIG;
|
||
|
snprintf(strport, sizeof strport, "%u", port);
|
||
|
if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
|
||
|
fatal("%s: Could not resolve hostname %.100s: %s", __progname,
|