diff lib/rfc959.c @ 278:3bc63e3dbe12

2003-10-2 Brian Masney <masneyb@gftp.org> * lib/rfc959.c - fixed rename bug (from Aurelien Jarno <aurel32@debian.org>) * src/gtk/gftp-gtk.c - make the help menu left aligned so that it is more consistent with other GNOME apps (from Miguel Ibarra <mibarra@ximian.com>) * src/gtk/transfer.c - right after the pointer to the next transfer is moved, set the current transfer size back to 0. The user could briefly (< 1 sec) see the old size transfered on the next file.
author masneyb
date Thu, 02 Oct 2003 09:50:20 +0000
parents cb7c1903bff3
children de030cbd432c
line wrap: on
line diff
--- a/lib/rfc959.c	Tue Sep 23 04:15:18 2003 +0000
+++ b/lib/rfc959.c	Thu Oct 02 09:50:20 2003 +0000
@@ -1551,7 +1551,7 @@
 
   if (ret < 0)
     return (ret);
-  else if (ret != '2')
+  else if (ret != '3')
     return (GFTP_ERETRYABLE);
 
   tempstr = g_strconcat ("RNTO ", newname, "\r\n", NULL);