diff options
author | Wirlaburla <[email protected]> | 2024-10-17 16:29:54 -0500 |
---|---|---|
committer | Wirlaburla <[email protected]> | 2024-10-17 16:29:54 -0500 |
commit | 8b48c1df5dd5be9110baa1b6b85bc535119130e9 (patch) | |
tree | 92bd0705e8fe042f85b539255aea6d3151768abe | |
parent | cb8fa6a2377b220cb0a36c612cd5186473d44d55 (diff) | |
download | tdelibs-8b48c1df5dd5be9110baa1b6b85bc535119130e9.tar.gz tdelibs-8b48c1df5dd5be9110baa1b6b85bc535119130e9.zip |
change ftp pass command case
-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) ); |