summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:52:17 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:52:17 +1100
commitec52d7c0939569a5fa1ce531643da66508434486 (patch)
tree4cdfb7e8e359dc731326946653132d9bb4731a80 /ssh-agent.c
parent28e4d8f87b9bdee4c91187f6d959b4c0124cd30b (diff)
- (djm) Use local sys/queue.h if necessary in ssh-agent.c
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 5264c23a8..ce283c8cc 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -36,9 +36,15 @@
36 */ 36 */
37 37
38#include "includes.h" 38#include "includes.h"
39#include <sys/queue.h>
40RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $"); 39RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $");
41 40
41#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
42#include <sys/queue.h>
43#else
44#include "openbsd-compat/fake-queue.h"
45#endif
46
47
42#include <openssl/evp.h> 48#include <openssl/evp.h>
43#include <openssl/md5.h> 49#include <openssl/md5.h>
44 50