summaryrefslogtreecommitdiff
path: root/sftp-glob.c
diff options
context:
space:
mode:
Diffstat (limited to 'sftp-glob.c')
-rw-r--r--sftp-glob.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/sftp-glob.c b/sftp-glob.c
index 16c5e206a..cdc270827 100644
--- a/sftp-glob.c
+++ b/sftp-glob.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: sftp-glob.c,v 1.22 2006/08/03 03:34:42 deraadt Exp $ */
1/* 2/*
2 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
3 * 4 *
@@ -15,14 +16,18 @@
15 */ 16 */
16 17
17#include "includes.h" 18#include "includes.h"
18RCSID("$OpenBSD: sftp-glob.c,v 1.15 2004/02/17 07:17:29 djm Exp $");
19 19
20#include "buffer.h" 20#include <sys/types.h>
21#include "bufaux.h" 21#ifdef HAVE_SYS_STAT_H
22#include "xmalloc.h" 22# include <sys/stat.h>
23#include "log.h" 23#endif
24 24
25#include <dirent.h>
26#include <string.h>
27
28#include "xmalloc.h"
25#include "sftp.h" 29#include "sftp.h"
30#include "buffer.h"
26#include "sftp-common.h" 31#include "sftp-common.h"
27#include "sftp-client.h" 32#include "sftp-client.h"
28 33