summaryrefslogtreecommitdiff
path: root/sftp-client.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 21:13:46 +1000
committerDamien Miller <djm@mindrot.org>2006-07-10 21:13:46 +1000
commit57cf638577052cfec0d4bce197c5597588a8b813 (patch)
treeef59d27eae64048fd8a16d53f6805fbd6525e078 /sftp-client.c
parent194a1cb0189e41db76feb9363a89fe716f7cad97 (diff)
- stevesk@cvs.openbsd.org 2006/07/09 15:15:11
[auth2-none.c authfd.c authfile.c includes.h misc.c monitor.c] [readpass.c scp.c serverloop.c sftp-client.c sftp-server.c] [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c] [sshlogin.c sshpty.c] move #include <fcntl.h> out of includes.h
Diffstat (limited to 'sftp-client.c')
-rw-r--r--sftp-client.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sftp-client.c b/sftp-client.c
index 8778439b9..e10361e93 100644
--- a/sftp-client.c
+++ b/sftp-client.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.c,v 1.65 2006/04/16 00:54:10 djm Exp $ */ 1/* $OpenBSD: sftp-client.c,v 1.66 2006/07/09 15:15:11 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,7 +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# include <signal.h> 29
30#include <fcntl.h>
31#include <signal.h>
30 32
31#include "openbsd-compat/sys-queue.h" 33#include "openbsd-compat/sys-queue.h"
32 34