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-glob.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sftp-glob.c') diff --git a/sftp-glob.c b/sftp-glob.c index aec6d2734..79dca00f1 100644 --- a/sftp-glob.c +++ b/sftp-glob.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sftp-glob.c,v 1.1 2001/03/13 22:42:54 djm Exp $"); +RCSID("$OpenBSD: sftp-glob.c,v 1.2 2001/03/16 08:16:18 djm Exp $"); #include "ssh.h" #include "buffer.h" @@ -119,7 +119,7 @@ int fudge_lstat(const char *path, struct stat *st) { Attrib *a; - if (!(a = do_lstat(cur.fd_in, cur.fd_out, (char*)path))) + if (!(a = do_lstat(cur.fd_in, cur.fd_out, (char*)path, 0))) return(-1); attrib_to_stat(a, st); @@ -131,7 +131,7 @@ int fudge_stat(const char *path, struct stat *st) { Attrib *a; - if (!(a = do_stat(cur.fd_in, cur.fd_out, (char*)path))) + if (!(a = do_stat(cur.fd_in, cur.fd_out, (char*)path, 0))) return(-1); attrib_to_stat(a, st); -- cgit v1.2.3