mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-03 00:02:05 +00:00
- (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
from Martin Johansson <fatbob@acc.umu.se>
This commit is contained in:
parent
15b2952cd8
commit
89d9796fbe
3
CREDITS
3
CREDITS
@ -53,6 +53,7 @@ Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes
|
|||||||
Larry Jones <larry.jones@sdrc.com> - Bugfixes
|
Larry Jones <larry.jones@sdrc.com> - Bugfixes
|
||||||
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes
|
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes
|
||||||
Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
|
Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
|
||||||
|
Martin Johansson <fatbob@acc.umu.se> - Linux fixes
|
||||||
Mark Miller <markm@swoon.net> - Bugfixes
|
Mark Miller <markm@swoon.net> - Bugfixes
|
||||||
Matt Richards <v2matt@btv.ibm.com> - AIX patches
|
Matt Richards <v2matt@btv.ibm.com> - AIX patches
|
||||||
Michael Stone <mstone@cs.loyola.edu> - Irix enhancements
|
Michael Stone <mstone@cs.loyola.edu> - Irix enhancements
|
||||||
@ -81,4 +82,4 @@ Zack Weinberg <zack@wolery.cumb.org> - GNOME askpass enhancement
|
|||||||
|
|
||||||
Apologies to anyone I have missed.
|
Apologies to anyone I have missed.
|
||||||
|
|
||||||
Damien Miller <djm@ibs.com.au>
|
Damien Miller <djm@mindrot.org>
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
20001014
|
20001014
|
||||||
- (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
|
- (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
|
||||||
- (djm) Revert SSH2 serverloop hack, will find a better way.
|
- (djm) Revert SSH2 serverloop hack, will find a better way.
|
||||||
|
- (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
|
||||||
|
from Martin Johansson <fatbob@acc.umu.se>
|
||||||
|
|
||||||
20001007
|
20001007
|
||||||
- (stevesk) Print PAM return value in PAM log messages to aid
|
- (stevesk) Print PAM return value in PAM log messages to aid
|
||||||
|
@ -1759,7 +1759,7 @@ x11_create_display_inet(int screen_number, int x11_display_offset)
|
|||||||
continue;
|
continue;
|
||||||
sock = socket(ai->ai_family, SOCK_STREAM, 0);
|
sock = socket(ai->ai_family, SOCK_STREAM, 0);
|
||||||
if (sock < 0) {
|
if (sock < 0) {
|
||||||
if (errno != EINVAL) {
|
if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
|
||||||
error("socket: %.100s", strerror(errno));
|
error("socket: %.100s", strerror(errno));
|
||||||
return NULL;
|
return NULL;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user