changeset 284:9f121f62284b

2003-10-12 Brian Masney <masneyb@gftp.org> * lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2 protocol.
author masneyb
date Mon, 13 Oct 2003 00:24:06 +0000
parents 01c414ab9bb3
children 470759f49ba2
files ChangeLog lib/sshv2.c
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Oct 08 08:33:02 2003 +0000
+++ b/ChangeLog	Mon Oct 13 00:24:06 2003 +0000
@@ -1,3 +1,7 @@
+2003-10-12 Brian Masney <masneyb@gftp.org>
+	* lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2
+	protocol.
+
 2003-10-4 Brian Masney <masneyb@gftp.org>
 	* lib/protocols.c - fix for CRAY directory listings. Some UNIX directory
 	listings with files containing spaces could be misinterpreted.
@@ -1544,7 +1548,7 @@
 
 	* cvsclean - added this script
 
-	* *.[ch] - added $Id: ChangeLog,v 1.145 2003/10/04 14:45:38 masneyb Exp $ tags
+	* *.[ch] - added $Id: ChangeLog,v 1.146 2003/10/13 00:24:05 masneyb Exp $ tags
 
 	* debian/* - updated files from Debian maintainer
 
--- a/lib/sshv2.c	Wed Oct 08 08:33:02 2003 +0000
+++ b/lib/sshv2.c	Mon Oct 13 00:24:06 2003 +0000
@@ -1396,8 +1396,8 @@
       sshv2_message_free (&message);
       return (0);
     }
-  else
-    return (sshv2_getcwd (request));
+
+  return (0);
 }