diff options
author | Damien Miller <djm@mindrot.org> | 2000-08-29 11:05:50 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-08-29 11:05:50 +1100 |
commit | 4e0f5e1ec9b6318ef251180dbca50eaa01f74536 (patch) | |
tree | e0db3496b81030624ab28d0c7a478e8827ea2a56 | |
parent | f3df05248675a2be76c72a0cd92f3b8f8f26af7b (diff) |
- (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
Garrick James <garrick@james.net>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sshd.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20000829 | ||
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 | |||
1 | 20000823 | 6 | 20000823 |
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 |
@@ -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 |