diff options
author | 2002-02-04 00:53:39 +0000 | |
---|---|---|
committer | 2002-02-04 00:53:39 +0000 | |
commit | 76e03d364a77f044d69790a04ef828a68654aadf (patch) | |
tree | c30f9c9f6255e376bc793c48477af08176db0a9e /usr.bin/ssh/ssh-agent.c | |
parent | ssh-add also adds $HOME/.ssh/id_rsa and $HOME/.ssh/id_dsa now. (diff) | |
download | wireguard-openbsd-76e03d364a77f044d69790a04ef828a68654aadf.tar.xz wireguard-openbsd-76e03d364a77f044d69790a04ef828a68654aadf.zip |
unneeded includes
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 3d0979b75b5..1ad62f578b6 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.80 2002/02/04 00:53:39 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -37,7 +37,7 @@ #include "includes.h" #include <sys/queue.h> -RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.80 2002/02/04 00:53:39 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/md5.h> @@ -47,13 +47,9 @@ RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $"); #include "buffer.h" #include "bufaux.h" #include "xmalloc.h" -#include "packet.h" #include "getput.h" -#include "mpaux.h" #include "key.h" #include "authfd.h" -#include "cipher.h" -#include "kex.h" #include "compat.h" #include "log.h" |