]> andersk Git - openssh.git/blobdiff - sftp-glob.c
- djm@cvs.openbsd.org 2010/01/13 01:40:16
[openssh.git] / sftp-glob.c
index f47367f10d60ecdf41da9085c8f701b070e6887d..cdc270827972c7074f67bdb06ca46045929d11f8 100644 (file)
@@ -1,3 +1,4 @@
+/* $OpenBSD: sftp-glob.c,v 1.22 2006/08/03 03:34:42 deraadt Exp $ */
 /*
  * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
  *
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: sftp-glob.c,v 1.14 2004/02/17 05:39:51 djm Exp $");
 
-#include "buffer.h"
-#include "bufaux.h"
-#include "xmalloc.h"
-#include "log.h"
+#include <sys/types.h>
+#ifdef HAVE_SYS_STAT_H
+# include <sys/stat.h>
+#endif
+
+#include <dirent.h>
+#include <string.h>
 
+#include "xmalloc.h"
 #include "sftp.h"
+#include "buffer.h"
 #include "sftp-common.h"
 #include "sftp-client.h"
-#include "sftp-glob.h"
+
+int remote_glob(struct sftp_conn *, const char *, int,
+    int (*)(const char *, int), glob_t *);
 
 struct SFTP_OPENDIR {
        SFTP_DIRENT **dir;
This page took 1.697134 seconds and 4 git commands to generate.