summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-05 12:25:28 +1100
committerDamien Miller <djm@mindrot.org>2002-02-05 12:25:28 +1100
commit4d4d53f39951373505b0b3be915860e621d18a9e (patch)
tree1f3224fabc83ff7ed9fc27b184f6c6e88ba9a300 /ssh-agent.c
parentd2b8f1657e3ef8d892bcc4fc3857f216c1ca4127 (diff)
- stevesk@cvs.openbsd.org 2002/02/04 00:53:39
[ssh-agent.c] unneeded includes
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index ce283c8cc..a0bc9cf09 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.80 2002/02/04 00:53:39 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -36,7 +36,7 @@
36 */ 36 */
37 37
38#include "includes.h" 38#include "includes.h"
39RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $"); 39RCSID("$OpenBSD: ssh-agent.c,v 1.80 2002/02/04 00:53:39 stevesk Exp $");
40 40
41#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H) 41#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
42#include <sys/queue.h> 42#include <sys/queue.h>
@@ -53,13 +53,9 @@ RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $");
53#include "buffer.h" 53#include "buffer.h"
54#include "bufaux.h" 54#include "bufaux.h"
55#include "xmalloc.h" 55#include "xmalloc.h"
56#include "packet.h"
57#include "getput.h" 56#include "getput.h"
58#include "mpaux.h"
59#include "key.h" 57#include "key.h"
60#include "authfd.h" 58#include "authfd.h"
61#include "cipher.h"
62#include "kex.h"
63#include "compat.h" 59#include "compat.h"
64#include "log.h" 60#include "log.h"
65 61