summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:29:24 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:29:24 +1100
commit9cf6d077fb87b4364e70c9fd889bf26744718301 (patch)
tree723b1647b10a98e1289922ac1a1eef66d51339c6 /sftp.c
parent17e91c0fb01787f9a5974a997bb26114a435dde7 (diff)
downloadopenssh-git-9cf6d077fb87b4364e70c9fd889bf26744718301.tar.gz
- stevesk@cvs.openbsd.org 2006/02/10 01:44:27
[includes.h monitor.c readpass.c scp.c serverloop.c session.c^?] [sftp.c sshconnect.c sshconnect2.c sshd.c] move #include <sys/wait.h> out of includes.h; ok markus@
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sftp.c b/sftp.c
index 0599e587..4e170ee6 100644
--- a/sftp.c
+++ b/sftp.c
@@ -15,9 +15,11 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sftp.c,v 1.72 2006/02/10 00:27:13 stevesk Exp $");
+RCSID("$OpenBSD: sftp.c,v 1.73 2006/02/10 01:44:27 stevesk Exp $");
#include <sys/ioctl.h>
+#include <sys/types.h>
+#include <sys/wait.h>
#ifdef HAVE_PATHS_H
# include <paths.h>