diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | channels.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -3,6 +3,9 @@ | |||
3 | - djm@cvs.openbsd.org 2004/05/26 08:59:57 | 3 | - djm@cvs.openbsd.org 2004/05/26 08:59:57 |
4 | [sftp.c] | 4 | [sftp.c] |
5 | exit -> _exit in forked child on error; from andrushock AT korovino.net | 5 | exit -> _exit in forked child on error; from andrushock AT korovino.net |
6 | - markus@cvs.openbsd.org 2004/05/26 23:02:39 | ||
7 | [channels.c] | ||
8 | missing freeaddrinfo; Andrey Matveev | ||
6 | 9 | ||
7 | 20040603 | 10 | 20040603 |
8 | - (dtucker) [auth-pam.c] Don't use pam_* namespace for sshd's PAM functions. | 11 | - (dtucker) [auth-pam.c] Don't use pam_* namespace for sshd's PAM functions. |
@@ -1187,4 +1190,4 @@ | |||
1187 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 1190 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
1188 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 1191 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
1189 | 1192 | ||
1190 | $Id: ChangeLog,v 1.3375 2004/06/15 00:24:13 djm Exp $ | 1193 | $Id: ChangeLog,v 1.3376 2004/06/15 00:27:15 djm Exp $ |
diff --git a/channels.c b/channels.c index 2b1ce0e5c..437befa34 100644 --- a/channels.c +++ b/channels.c | |||
@@ -39,7 +39,7 @@ | |||
39 | */ | 39 | */ |
40 | 40 | ||
41 | #include "includes.h" | 41 | #include "includes.h" |
42 | RCSID("$OpenBSD: channels.c,v 1.202 2004/05/21 11:33:11 djm Exp $"); | 42 | RCSID("$OpenBSD: channels.c,v 1.203 2004/05/26 23:02:39 markus Exp $"); |
43 | 43 | ||
44 | #include "ssh.h" | 44 | #include "ssh.h" |
45 | #include "ssh1.h" | 45 | #include "ssh1.h" |
@@ -2570,6 +2570,7 @@ x11_create_display_inet(int x11_display_offset, int x11_use_localhost, | |||
2570 | if (sock < 0) { | 2570 | if (sock < 0) { |
2571 | if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) { | 2571 | if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) { |
2572 | error("socket: %.100s", strerror(errno)); | 2572 | error("socket: %.100s", strerror(errno)); |
2573 | freeaddrinfo(aitop); | ||
2573 | return -1; | 2574 | return -1; |
2574 | } else { | 2575 | } else { |
2575 | debug("x11_create_display_inet: Socket family %d not supported", | 2576 | debug("x11_create_display_inet: Socket family %d not supported", |