summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels.c6
-rw-r--r--debian/changelog2
2 files changed, 7 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index 1be213bce..2dea5dfd0 100644
--- a/channels.c
+++ b/channels.c
@@ -2680,7 +2680,11 @@ x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
2680 sock = socket(ai->ai_family, ai->ai_socktype, 2680 sock = socket(ai->ai_family, ai->ai_socktype,
2681 ai->ai_protocol); 2681 ai->ai_protocol);
2682 if (sock < 0) { 2682 if (sock < 0) {
2683 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) { 2683 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
2684#ifdef EPFNOSUPPORT
2685 && (errno != EPFNOSUPPORT)
2686#endif
2687 ) {
2684 error("socket: %.100s", strerror(errno)); 2688 error("socket: %.100s", strerror(errno));
2685 freeaddrinfo(aitop); 2689 freeaddrinfo(aitop);
2686 return -1; 2690 return -1;
diff --git a/debian/changelog b/debian/changelog
index 4b4949042..41b2690b2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ openssh (1:4.0p1-1) UNRELEASED; urgency=low
6 * Make gnome-ssh-askpass stay above other windows (thanks, Liyang HU; 6 * Make gnome-ssh-askpass stay above other windows (thanks, Liyang HU;
7 closes: #296487). 7 closes: #296487).
8 * Remove obsolete and unnecessary ssh/forward_warning debconf note. 8 * Remove obsolete and unnecessary ssh/forward_warning debconf note.
9 * Restore Hurd X forwarding fix from #102991, lost somewhere along the
10 way.
9 * debconf template translations: 11 * debconf template translations:
10 - Update Czech (thanks, Miroslav Kure; closes: #298744). 12 - Update Czech (thanks, Miroslav Kure; closes: #298744).
11 - Update Finnish (thanks, Matti Pöllä; closes: #303787). 13 - Update Finnish (thanks, Matti Pöllä; closes: #303787).