diff options
author | Wirlaburla <wirlaburla@worlio.com> | 2024-10-17 16:29:54 -0500 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-28 09:05:09 +0900 |
commit | fcbf2cd71b862375bbb287ee720e068feeff1823 (patch) | |
tree | e1a6b0c7f05673fe542590f34cab4e3697e3d960 | |
parent | 91b5d541e45c866ad49203a7a5c8cf0394690695 (diff) | |
download | tdelibs-fcbf2cd71b862375bbb287ee720e068feeff1823.tar.gz tdelibs-fcbf2cd71b862375bbb287ee720e068feeff1823.zip |
change ftp pass command case
(cherry picked from commit 8b48c1df5dd5be9110baa1b6b85bc535119130e9)
-rw-r--r-- | tdeioslave/ftp/ftp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/ftp/ftp.cpp b/tdeioslave/ftp/ftp.cpp index db7de572c..8a87305f6 100644 --- a/tdeioslave/ftp/ftp.cpp +++ b/tdeioslave/ftp/ftp.cpp @@ -640,7 +640,7 @@ bool Ftp::ftpLogin() if( needPass ) { - tempbuf = "pass "; + tempbuf = "PASS "; tempbuf += pass.latin1(); kdDebug(7102) << "Sending Login password: " << "[protected]" << endl; loggedIn = ( ftpSendCmd(tempbuf) && (m_iRespCode == 230) ); |