summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS3
-rw-r--r--ChangeLog2
-rw-r--r--channels.c2
3 files changed, 5 insertions, 2 deletions
diff --git a/CREDITS b/CREDITS
index 90aa89dc1..809778802 100644
--- a/CREDITS
+++ b/CREDITS
@@ -53,6 +53,7 @@ Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes
53Larry Jones <larry.jones@sdrc.com> - Bugfixes 53Larry Jones <larry.jones@sdrc.com> - Bugfixes
54Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes 54Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes
55Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches 55Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
56Martin Johansson <fatbob@acc.umu.se> - Linux fixes
56Mark Miller <markm@swoon.net> - Bugfixes 57Mark Miller <markm@swoon.net> - Bugfixes
57Matt Richards <v2matt@btv.ibm.com> - AIX patches 58Matt Richards <v2matt@btv.ibm.com> - AIX patches
58Michael Stone <mstone@cs.loyola.edu> - Irix enhancements 59Michael Stone <mstone@cs.loyola.edu> - Irix enhancements
@@ -81,4 +82,4 @@ Zack Weinberg <zack@wolery.cumb.org> - GNOME askpass enhancement
81 82
82Apologies to anyone I have missed. 83Apologies to anyone I have missed.
83 84
84Damien Miller <djm@ibs.com.au> 85Damien Miller <djm@mindrot.org>
diff --git a/ChangeLog b/ChangeLog
index a316b1e9c..86e7cea96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120001014 120001014
2 - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth 2 - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
3 - (djm) Revert SSH2 serverloop hack, will find a better way. 3 - (djm) Revert SSH2 serverloop hack, will find a better way.
4 - (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
5 from Martin Johansson <fatbob@acc.umu.se>
4 6
520001007 720001007
6 - (stevesk) Print PAM return value in PAM log messages to aid 8 - (stevesk) Print PAM return value in PAM log messages to aid
diff --git a/channels.c b/channels.c
index c842aa231..96d8dc4b4 100644
--- a/channels.c
+++ b/channels.c
@@ -1759,7 +1759,7 @@ x11_create_display_inet(int screen_number, int x11_display_offset)
1759 continue; 1759 continue;
1760 sock = socket(ai->ai_family, SOCK_STREAM, 0); 1760 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1761 if (sock < 0) { 1761 if (sock < 0) {
1762 if (errno != EINVAL) { 1762 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
1763 error("socket: %.100s", strerror(errno)); 1763 error("socket: %.100s", strerror(errno));
1764 return NULL; 1764 return NULL;
1765 } else { 1765 } else {