diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-15 01:52:09 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-15 01:52:09 +0100 |
commit | 6ff3caddb687a89a5df715337917d0e140985b7f (patch) | |
tree | 2df448777122ec5037bafd66664764e445b51bea /ssh-agent.c | |
parent | - stevesk@cvs.openbsd.org 2006/02/20 17:02:44 (diff) | |
download | openssh-6ff3caddb687a89a5df715337917d0e140985b7f.tar.xz openssh-6ff3caddb687a89a5df715337917d0e140985b7f.zip |
oops, this commit is really:
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c]
[serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c]
move #include <signal.h> out of includes.h; ok markus@
the previous was:
- stevesk@cvs.openbsd.org 2006/02/20 17:19:54
[auth-rhosts.c auth-rsa.c auth.c auth2-none.c auth2-pubkey.c]
[authfile.c clientloop.c includes.h readconf.c scp.c session.c]
[sftp-client.c sftp-common.c sftp-common.h sftp-glob.c]
[sftp-server.c sftp.c ssh-add.c ssh-keygen.c ssh.c sshconnect.c]
[sshconnect2.c sshd.c sshpty.c]
move #include <sys/stat.h> out of includes.h; ok markus@
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 0ab232191..b45087629 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -34,7 +34,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-agent.c,v 1.128 2006/02/20 16:36:14 stevesk Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.129 2006/02/20 17:02:44 stevesk Exp $"); #include <sys/types.h> #ifdef HAVE_SYS_UN_H @@ -45,6 +45,8 @@ RCSID("$OpenBSD: ssh-agent.c,v 1.128 2006/02/20 16:36:14 stevesk Exp $"); #ifdef HAVE_PATHS_H # include <paths.h> #endif +#include <signal.h> + #include <openssl/evp.h> #include <openssl/md5.h> |