- 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@
diff --git a/sftp-glob.c b/sftp-glob.c
index aec6d27..79dca00 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 @@
 {
 	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 @@
 {
 	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);