summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 10:57:45 +1000
committerDamien Miller <djm@mindrot.org>2006-08-05 10:57:45 +1000
commit9aec91948d134745c29ff63d32d46ac2c367306a (patch)
tree7eabd48bafaea56e6dbe8337aad6ed975fec1fb1 /ssh-agent.c
parent7c6e4b059c29c695d3c411f5fa83abe953225e21 (diff)
- stevesk@cvs.openbsd.org 2006/07/25 02:59:21
[channels.c clientloop.c packet.c scp.c serverloop.c sftp-client.c] [sftp-server.c ssh-agent.c ssh-keyscan.c sshconnect.c sshd.c] move #include <sys/time.h> out of includes.h
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 5bf4dbc18..e4b620483 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.146 2006/07/22 20:48:23 stevesk Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.147 2006/07/25 02:59:21 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
@@ -39,6 +39,9 @@
39#include <sys/types.h> 39#include <sys/types.h>
40#include <sys/stat.h> 40#include <sys/stat.h>
41#include <sys/socket.h> 41#include <sys/socket.h>
42#ifdef HAVE_SYS_TIME_H
43# include <sys/time.h>
44#endif
42#ifdef HAVE_SYS_UN_H 45#ifdef HAVE_SYS_UN_H
43# include <sys/un.h> 46# include <sys/un.h>
44#endif 47#endif