From 201ffd37bef1b76a21a0b4881cc24a7cc8aef9c0 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Fri, 22 Feb 2013 20:45:55 -0500 Subject: [PATCH] successful CDUP now returns 250 instead to 257 --- mystic/mis_client_ftp.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mystic/mis_client_ftp.pas b/mystic/mis_client_ftp.pas index ae745f6..afd1149 100644 --- a/mystic/mis_client_ftp.pas +++ b/mystic/mis_client_ftp.pas @@ -90,7 +90,7 @@ Const re_XferOK = '226 Transfer OK'; re_PassiveOK = '227 Entering Passive Mode '; re_LoggedIn = '230 User logged in, proceed.'; - re_DirOkay = '257 Working directory is now '; + re_DirOkay = '250 Working directory is now '; re_UserOkay = '331 User name okay, need password.'; re_NoData = '425 Unable to open data connection'; re_BadCommand = '503 Bad sequence of commands.';