mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-25 23:05:21 +02:00
- Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
<dgaudet@arctic.org>
This commit is contained in:
parent
6b85a7ffa6
commit
5121e3aaa6
@ -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:
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user