summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sftp-common.h
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-02-20 17:19:55 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-02-20 17:19:55 +0000
commit349f55648639c727914febc82c97fe73470ac0b0 (patch)
treeb0b74a2bd56d4f19d633a9549e2f1d02d2cd5660 /usr.bin/ssh/sftp-common.h
parentcc22698e3d08fa9f43bbb8637f9ae25ed57afa02 (diff)
move #include <sys/stat.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/sftp-common.h')
-rw-r--r--usr.bin/ssh/sftp-common.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp-common.h b/usr.bin/ssh/sftp-common.h
index 2b1995a2de7..72be6e61cad 100644
--- a/usr.bin/ssh/sftp-common.h
+++ b/usr.bin/ssh/sftp-common.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-common.h,v 1.6 2006/01/02 01:20:31 djm Exp $ */
+/* $OpenBSD: sftp-common.h,v 1.7 2006/02/20 17:19:54 stevesk Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -25,6 +25,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/types.h>
+#include <sys/stat.h>
+
/* Maximum packet that we are willing to send/accept */
#define SFTP_MAX_MSG_LENGTH (256 * 1024)