summaryrefslogtreecommitdiff
path: root/sftp-glob.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-13 14:10:32 +1100
committerDamien Miller <djm@mindrot.org>2002-02-13 14:10:32 +1100
commit3db5f530d0fdf8044d6014ab12940efe0bbecca7 (patch)
tree578c5ea0091f934c13d40264b033bbd2532d2e9a /sftp-glob.h
parent3606ee29388781894e6374030d0e40fa46da4cf9 (diff)
- djm@cvs.openbsd.org 2002/02/13 00:59:23
[sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp.h] [sftp-int.c sftp-int.h] API cleanup and backwards compat for filexfer v.0 servers; ok markus@
Diffstat (limited to 'sftp-glob.h')
-rw-r--r--sftp-glob.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/sftp-glob.h b/sftp-glob.h
index 2885044ae..488b0a80b 100644
--- a/sftp-glob.h
+++ b/sftp-glob.h
@@ -1,7 +1,7 @@
1/* $OpenBSD: sftp-glob.h,v 1.5 2001/06/26 17:27:24 markus Exp $ */ 1/* $OpenBSD: sftp-glob.h,v 1.6 2002/02/13 00:59:23 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Damien Miller. All rights reserved. 4 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
@@ -26,5 +26,13 @@
26 26
27/* Remote sftp filename globbing */ 27/* Remote sftp filename globbing */
28 28
29#ifndef _SFTP_GLOB_H
30#define _SFTP_GLOB_H
31
32#include "sftp-client.h"
33
29int 34int
30remote_glob(int, int, const char *, int, int (*)(const char *, int), glob_t *); 35remote_glob(struct sftp_conn *, const char *, int,
36 int (*)(const char *, int), glob_t *);
37
38#endif