summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index d8c53a4a8..a55d27817 100644
--- a/channels.c
+++ b/channels.c
@@ -3252,7 +3252,11 @@ x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
3252 sock = socket(ai->ai_family, ai->ai_socktype, 3252 sock = socket(ai->ai_family, ai->ai_socktype,
3253 ai->ai_protocol); 3253 ai->ai_protocol);
3254 if (sock < 0) { 3254 if (sock < 0) {
3255 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) { 3255 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3256#ifdef EPFNOSUPPORT
3257 && (errno != EPFNOSUPPORT)
3258#endif
3259 ) {
3256 error("socket: %.100s", strerror(errno)); 3260 error("socket: %.100s", strerror(errno));
3257 freeaddrinfo(aitop); 3261 freeaddrinfo(aitop);
3258 return -1; 3262 return -1;