- (bal) Minor correction to sftp-client.c I made.  Should return 'status'
   instead of '0'  (from the OpenBSD tree)
diff --git a/sftp-client.c b/sftp-client.c
index b4ee847..8338dbc 100644
--- a/sftp-client.c
+++ b/sftp-client.c
@@ -29,7 +29,7 @@
 /* XXX: copy between two remote sites */
 
 #include "includes.h"
-RCSID("$OpenBSD: sftp-client.c,v 1.8 2001/02/08 17:11:23 stevesk Exp $");
+RCSID("$OpenBSD: sftp-client.c,v 1.9 2001/02/10 00:41:46 djm Exp $");
 
 #include "ssh.h"
 #include "buffer.h"
@@ -331,7 +331,7 @@
 				error("Couldn't read directory: %s",
 				    fx2txt(status));
 				do_close(fd_in, fd_out, handle, handle_len);
-				return(0);
+				return(status);
 			}
 		} else if (type != SSH2_FXP_NAME)
 			fatal("Expected SSH2_FXP_NAME(%d) packet, got %d",