summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--sshd.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d2440babc..19e8ca3b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120000829
2 - (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
3 Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
4 Garrick James <garrick@james.net>
5
120000823 620000823
2 - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4 7 - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
3 Avoids "scp never exits" problem. Reports from Lutz Jaenicke 8 Avoids "scp never exits" problem. Reports from Lutz Jaenicke
diff --git a/sshd.c b/sshd.c
index ae02f2c40..e3903c783 100644
--- a/sshd.c
+++ b/sshd.c
@@ -956,6 +956,7 @@ main(int ac, char **av)
956 signal(SIGTERM, SIG_DFL); 956 signal(SIGTERM, SIG_DFL);
957 signal(SIGQUIT, SIG_DFL); 957 signal(SIGQUIT, SIG_DFL);
958 signal(SIGCHLD, SIG_DFL); 958 signal(SIGCHLD, SIG_DFL);
959 signal(SIGINT, SIG_DFL);
959 960
960 /* 961 /*
961 * Set socket options for the connection. We want the socket to 962 * Set socket options for the connection. We want the socket to