diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-15 11:45:54 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-15 11:45:54 +1100 |
commit | f17883e6a0f9462c8bc163cce44331862581b0cb (patch) | |
tree | 3e298f6761b40b7be32c76f529f92b1f276cb329 /sftp-glob.c | |
parent | 574c41fdb3ff4b8eb7f121b05a08f2415ec7efec (diff) |
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c]
[serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c]
move #include <signal.h> out of includes.h; ok markus@
Diffstat (limited to 'sftp-glob.c')
-rw-r--r-- | sftp-glob.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sftp-glob.c b/sftp-glob.c index 9dfbf9538..baa84aa71 100644 --- a/sftp-glob.c +++ b/sftp-glob.c | |||
@@ -15,7 +15,12 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "includes.h" | 17 | #include "includes.h" |
18 | RCSID("$OpenBSD: sftp-glob.c,v 1.16 2006/02/08 23:51:24 stevesk Exp $"); | 18 | RCSID("$OpenBSD: sftp-glob.c,v 1.17 2006/02/20 17:19:54 stevesk Exp $"); |
19 | |||
20 | #include <sys/types.h> | ||
21 | #ifdef HAVE_SYS_STAT_H | ||
22 | # include <sys/stat.h> | ||
23 | #endif | ||
19 | 24 | ||
20 | #include <dirent.h> | 25 | #include <dirent.h> |
21 | 26 | ||