summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 21:08:03 +1000
committerDamien Miller <djm@mindrot.org>2006-07-10 21:08:03 +1000
commite3b60b524edcc55d71e7ccb0958fd69a0e525f30 (patch)
treeceaca7ce2723398bb44d4c9ecf92dfe419d0f401 /sftp.c
parent58059aef053a0b925c70b9804930e3fe17edfac8 (diff)
- stevesk@cvs.openbsd.org 2006/07/08 21:47:12
[authfd.c canohost.c clientloop.c dns.c dns.h includes.h] [monitor_fdpass.c nchan.c packet.c servconf.c sftp.c ssh-agent.c] [ssh-keyscan.c ssh.c sshconnect.h sshd.c sshlogin.h] move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sftp.c b/sftp.c
index 22fa6ad2a..a6c22aa67 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.82 2006/05/17 12:43:34 markus Exp $ */ 1/* $OpenBSD: sftp.c,v 1.83 2006/07/08 21:47:12 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 *
@@ -22,6 +22,7 @@
22# include <sys/stat.h> 22# include <sys/stat.h>
23#endif 23#endif
24#include <sys/ioctl.h> 24#include <sys/ioctl.h>
25#include <sys/socket.h>
25#include <sys/wait.h> 26#include <sys/wait.h>
26 27
27#ifdef HAVE_PATHS_H 28#ifdef HAVE_PATHS_H