From c8d1c30c312003ecbeba9a383f0a61ed45ad0c04 Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Sat, 17 Mar 2001 00:34:46 +0000 Subject: - djm@cvs.openbsd.org 2001/03/16 08:16:18 [sftp-client.c sftp-client.h sftp-glob.c sftp-int.c] Revise globbing for get/put to be more shell-like. In particular, "get/put file* directory/" now works. ok markus@ --- sftp-client.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sftp-client.h') diff --git a/sftp-client.h b/sftp-client.h index e7ba02ad..a935736e 100644 --- a/sftp-client.h +++ b/sftp-client.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.h,v 1.3 2001/03/13 22:42:54 djm Exp $ */ +/* $OpenBSD: sftp-client.h,v 1.4 2001/03/16 08:16:18 djm Exp $ */ /* * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -62,14 +62,14 @@ int do_mkdir(int fd_in, int fd_out, char *path, Attrib *a); int do_rmdir(int fd_in, int fd_out, char *path); /* Get file attributes of 'path' (follows symlinks) */ -Attrib *do_stat(int fd_in, int fd_out, char *path); +Attrib *do_stat(int fd_in, int fd_out, char *path, int quiet); /* Get file attributes of 'path' (does not follow symlinks) */ -Attrib *do_lstat(int fd_in, int fd_out, char *path); +Attrib *do_lstat(int fd_in, int fd_out, char *path, int quiet); /* Get file attributes of open file 'handle' */ -Attrib *do_fstat(int fd_in, int fd_out, char *handle, - u_int handle_len); +Attrib *do_fstat(int fd_in, int fd_out, char *handle, u_int handle_len, + int quiet); /* Set file attributes of 'path' */ int do_setstat(int fd_in, int fd_out, char *path, Attrib *a); -- cgit v1.2.1