- (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>
This commit is contained in:
parent
f3df052486
commit
4e0f5e1ec9
|
@ -1,3 +1,8 @@
|
||||||
|
20000829
|
||||||
|
- (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>
|
||||||
|
|
||||||
20000823
|
20000823
|
||||||
- (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
|
- (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
|
||||||
Avoids "scp never exits" problem. Reports from Lutz Jaenicke
|
Avoids "scp never exits" problem. Reports from Lutz Jaenicke
|
||||||
|
|
1
sshd.c
1
sshd.c
|
@ -956,6 +956,7 @@ main(int ac, char **av)
|
||||||
signal(SIGTERM, SIG_DFL);
|
signal(SIGTERM, SIG_DFL);
|
||||||
signal(SIGQUIT, SIG_DFL);
|
signal(SIGQUIT, SIG_DFL);
|
||||||
signal(SIGCHLD, SIG_DFL);
|
signal(SIGCHLD, SIG_DFL);
|
||||||
|
signal(SIGINT, SIG_DFL);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set socket options for the connection. We want the socket to
|
* Set socket options for the connection. We want the socket to
|
||||||
|
|
Loading…
Reference in New Issue