summaryrefslogtreecommitdiff
path: root/scp.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 /scp.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 'scp.c')
-rw-r--r--scp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/scp.c b/scp.c
index 5ff6cac9a..cf8db8f34 100644
--- a/scp.c
+++ b/scp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: scp.c,v 1.150 2006/07/22 20:48:23 stevesk Exp $ */ 1/* $OpenBSD: scp.c,v 1.151 2006/07/25 02:59:21 stevesk Exp $ */
2/* 2/*
3 * scp - secure remote copy. This is basically patched BSD rcp which 3 * scp - secure remote copy. This is basically patched BSD rcp which
4 * uses ssh to do the data transfer (instead of using rcmd). 4 * uses ssh to do the data transfer (instead of using rcmd).
@@ -77,6 +77,9 @@
77#ifdef HAVE_SYS_STAT_H 77#ifdef HAVE_SYS_STAT_H
78# include <sys/stat.h> 78# include <sys/stat.h>
79#endif 79#endif
80#ifdef HAVE_SYS_TIME_H
81# include <sys/time.h>
82#endif
80#include <sys/wait.h> 83#include <sys/wait.h>
81 84
82#include <ctype.h> 85#include <ctype.h>