summaryrefslogtreecommitdiff
path: root/sftp-client.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 /sftp-client.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 'sftp-client.c')
-rw-r--r--sftp-client.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sftp-client.c b/sftp-client.c
index 9e7011ffd..b00dc70bd 100644
--- a/sftp-client.c
+++ b/sftp-client.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.c,v 1.70 2006/07/23 01:11:05 stevesk Exp $ */ 1/* $OpenBSD: sftp-client.c,v 1.71 2006/07/25 02:59:21 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -26,6 +26,9 @@
26#ifdef HAVE_SYS_STAT_H 26#ifdef HAVE_SYS_STAT_H
27# include <sys/stat.h> 27# include <sys/stat.h>
28#endif 28#endif
29#ifdef HAVE_SYS_TIME_H
30# include <sys/time.h>
31#endif
29 32
30#include <errno.h> 33#include <errno.h>
31#include <fcntl.h> 34#include <fcntl.h>