summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 11:02:17 +1000
committerDamien Miller <djm@mindrot.org>2006-08-05 11:02:17 +1000
commit8dbffe7904c4e28b7a741064a468f1cd98c0ad81 (patch)
tree1fc1df550e901fce4daf022648e100275fe0ea44 /ssh-agent.c
parent9aec91948d134745c29ff63d32d46ac2c367306a (diff)
- stevesk@cvs.openbsd.org 2006/07/26 02:35:17
[atomicio.c auth.c dh.c authfile.c buffer.c clientloop.c kex.c] [groupaccess.c gss-genr.c kexgexs.c misc.c monitor.c monitor_mm.c] [packet.c scp.c serverloop.c session.c sftp-client.c sftp-common.c] [sftp-server.c sftp.c ssh-add.c ssh-agent.c ssh-keygen.c sshlogin.c] [uidswap.c xmalloc.c] move #include <sys/param.h> out of includes.h
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index e4b620483..ed48c56d4 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.147 2006/07/25 02:59:21 stevesk Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.148 2006/07/26 02:35:17 stevesk 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
@@ -37,6 +37,8 @@
37#include "includes.h" 37#include "includes.h"
38 38
39#include <sys/types.h> 39#include <sys/types.h>
40#include <sys/param.h>
41#include <sys/resource.h>
40#include <sys/stat.h> 42#include <sys/stat.h>
41#include <sys/socket.h> 43#include <sys/socket.h>
42#ifdef HAVE_SYS_TIME_H 44#ifdef HAVE_SYS_TIME_H
@@ -46,7 +48,6 @@
46# include <sys/un.h> 48# include <sys/un.h>
47#endif 49#endif
48#include "openbsd-compat/sys-queue.h" 50#include "openbsd-compat/sys-queue.h"
49#include <sys/resource.h>
50 51
51#include <openssl/evp.h> 52#include <openssl/evp.h>
52#include <openssl/md5.h> 53#include <openssl/md5.h>