diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2004-02-17 07:17:30 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2004-02-17 07:17:30 +0000 |
commit | 76242bf542a06b657a133c3bdccd7cf0f7d1a0d7 (patch) | |
tree | bf38542b171048e8a6c9ccfd6c61d23557a322f1 /usr.bin/ssh/sftp-glob.c | |
parent | dcd10e74bef3c2fda8b73d0bb1095ac90380d9d0 (diff) |
Remove useless headers; ok deraadt@
Diffstat (limited to 'usr.bin/ssh/sftp-glob.c')
-rw-r--r-- | usr.bin/ssh/sftp-glob.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-glob.c b/usr.bin/ssh/sftp-glob.c index cda3b54bf7f..119094c0c1c 100644 --- a/usr.bin/ssh/sftp-glob.c +++ b/usr.bin/ssh/sftp-glob.c @@ -15,7 +15,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sftp-glob.c,v 1.14 2004/02/17 05:39:51 djm Exp $"); +RCSID("$OpenBSD: sftp-glob.c,v 1.15 2004/02/17 07:17:29 djm Exp $"); #include <glob.h> @@ -27,7 +27,9 @@ RCSID("$OpenBSD: sftp-glob.c,v 1.14 2004/02/17 05:39:51 djm Exp $"); #include "sftp.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; |