summaryrefslogtreecommitdiff
path: root/sftp-glob.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
commitb4c774cf8878d9100fde92ff4e938671c3b0301b (patch)
treea2dff9a498a7c4cdeddace98c2c34c7a2e3689fb /sftp-glob.h
parent16ae3d0dba5f81e5602798b915105284033dea75 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:33:07
[servconf.h serverloop.h session.h sftp-client.h sftp-common.h sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'sftp-glob.h')
-rw-r--r--sftp-glob.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sftp-glob.h b/sftp-glob.h
index 4206af439..37bd5d2da 100644
--- a/sftp-glob.h
+++ b/sftp-glob.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-glob.h,v 1.3 2001/04/15 08:43:46 markus Exp $ */ 1/* $OpenBSD: sftp-glob.h,v 1.4 2001/06/26 06:33:01 itojun Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Damien Miller. All rights reserved. 4 * Copyright (c) 2001 Damien Miller. All rights reserved.
@@ -27,6 +27,5 @@
27/* Remote sftp filename globbing */ 27/* Remote sftp filename globbing */
28 28
29int 29int
30remote_glob(int fd_in, int fd_out, const char *pattern, int flags, 30remote_glob(int, int, const char *, int, int (*)(const char *, int), glob_t *);
31 int (*errfunc)(const char *, int), glob_t *pglob);
32 31