diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sshconnect.c | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -34,6 +34,9 @@ | |||
34 | [clientloop.c ssh.c sshconnect.c sshconnect.h] | 34 | [clientloop.c ssh.c sshconnect.c sshconnect.h] |
35 | kill proxy command on fatal() (we already kill it on clean exit); | 35 | kill proxy command on fatal() (we already kill it on clean exit); |
36 | ok markus@ | 36 | ok markus@ |
37 | - djm@cvs.openbsd.org 2010/10/06 21:10:21 | ||
38 | [sshconnect.c] | ||
39 | swapped args to kill(2) | ||
37 | 40 | ||
38 | 20100924 | 41 | 20100924 |
39 | - (djm) OpenBSD CVS Sync | 42 | - (djm) OpenBSD CVS Sync |
diff --git a/sshconnect.c b/sshconnect.c index c849ca393..2cbd47d0c 100644 --- a/sshconnect.c +++ b/sshconnect.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshconnect.c,v 1.227 2010/10/06 06:39:28 djm Exp $ */ | 1 | /* $OpenBSD: sshconnect.c,v 1.228 2010/10/06 21:10:21 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -176,7 +176,7 @@ ssh_kill_proxy_command(void) | |||
176 | * case it hangs and instead rely on init to reap the child | 176 | * case it hangs and instead rely on init to reap the child |
177 | */ | 177 | */ |
178 | if (proxy_command_pid > 1) | 178 | if (proxy_command_pid > 1) |
179 | kill(SIGHUP, proxy_command_pid); | 179 | kill(proxy_command_pid, SIGHUP); |
180 | } | 180 | } |
181 | 181 | ||
182 | /* | 182 | /* |