Skip to content

Commit

Permalink
- (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
Browse files Browse the repository at this point in the history
   Doering <[email protected]>, John Horne <[email protected]> and
   Garrick James <[email protected]>
  • Loading branch information
djmdjm committed Aug 29, 2000
1 parent f3df052 commit 4e0f5e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
20000829
- (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
Doering <[email protected]>, John Horne <[email protected]> and
Garrick James <[email protected]>

20000823
- (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
Avoids "scp never exits" problem. Reports from Lutz Jaenicke
Expand Down
1 change: 1 addition & 0 deletions sshd.c
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,7 @@ main(int ac, char **av)
signal(SIGTERM, SIG_DFL);
signal(SIGQUIT, SIG_DFL);
signal(SIGCHLD, SIG_DFL);
signal(SIGINT, SIG_DFL);

/*
* Set socket options for the connection. We want the socket to
Expand Down

0 comments on commit 4e0f5e1

Please sign in to comment.