# HG changeset patch # User masneyb # Date 1066004646 0 # Node ID 9f121f62284be7cd5ed0a2b2d645bc8b5d6ede19 # Parent 01c414ab9bb3239af307dceb9972b98728002787 2003-10-12 Brian Masney * lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2 protocol. diff -r 01c414ab9bb3 -r 9f121f62284b ChangeLog --- 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 + * lib/sshv2.c - fixed crash when deleting subdirectories with the SSH2 + protocol. + 2003-10-4 Brian Masney * 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 diff -r 01c414ab9bb3 -r 9f121f62284b lib/sshv2.c --- 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); }