- Properly clean up on exit of ssh-agent. Patch from Dean Gaudet

<dgaudet@arctic.org>
This commit is contained in:
Damien Miller 2000-01-02 11:49:28 +11:00
parent 6b85a7ffa6
commit 5121e3aaa6
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
20000102
- Prevent multiple inclusion of config.h and defines.h. Suggested
by Andre Lucas <andre.lucas@dial.pipex.com>
- Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
<dgaudet@arctic.org>
19991231
- Fix password support on systems with a mixture of shadowed and
non-shadowed passwords (e.g. NIS). Report and fix from
@ -17,8 +23,6 @@
- Added support for directory-based lastlogs
- Really fix typedefs, patch from Ben Taylor <bent@clark.net>
- Prevent multiple inclusion of config.h and defines.h. Suggested
by Andre Lucas <andre.lucas@dial.pipex.com>
19991230
- OpenBSD CVS updates:

View File

@ -643,6 +643,8 @@ main(int ac, char **av)
signal(SIGALRM, check_parent_exists);
alarm(10);
}
signal(SIGHUP, cleanup_exit);
signal(SIGTERM, cleanup_exit);
signal(SIGINT, SIG_IGN);
signal(SIGPIPE, SIG_IGN);
while (1) {