diff options
author | 2011-12-12 00:49:47 +0000 | |
---|---|---|
committer | 2011-12-12 00:49:47 +0000 | |
commit | 612ba236917804506a18bcde06674e69c7e539e3 (patch) | |
tree | 5102cc43204e4fff0d9a7b5c518f6b3e3c52baca /kde-base | |
parent | rm old files (diff) | |
download | gentoo-2-612ba236917804506a18bcde06674e69c7e539e3.tar.gz gentoo-2-612ba236917804506a18bcde06674e69c7e539e3.tar.bz2 gentoo-2-612ba236917804506a18bcde06674e69c7e539e3.zip |
rm old files
(Portage version: 2.2.0_alpha80/cvs/Linux x86_64)
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kdebase-kioslaves/ChangeLog | 6 | ||||
-rw-r--r-- | kde-base/kdebase-kioslaves/files/kdebase-kioslaves-4.7.0-sftp.patch | 169 |
2 files changed, 5 insertions, 170 deletions
diff --git a/kde-base/kdebase-kioslaves/ChangeLog b/kde-base/kdebase-kioslaves/ChangeLog index a392a4c7e8c8..ac306605abbe 100644 --- a/kde-base/kdebase-kioslaves/ChangeLog +++ b/kde-base/kdebase-kioslaves/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/kdebase-kioslaves # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase-kioslaves/ChangeLog,v 1.241 2011/12/11 18:52:12 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase-kioslaves/ChangeLog,v 1.242 2011/12/12 00:49:47 abcd Exp $ + + 12 Dec 2011; Jonathan Callen <abcd@gentoo.org> + -files/kdebase-kioslaves-4.7.0-sftp.patch: + rm old files *kdebase-kioslaves-4.7.4 (11 Dec 2011) diff --git a/kde-base/kdebase-kioslaves/files/kdebase-kioslaves-4.7.0-sftp.patch b/kde-base/kdebase-kioslaves/files/kdebase-kioslaves-4.7.0-sftp.patch deleted file mode 100644 index a9843295fdf5..000000000000 --- a/kde-base/kdebase-kioslaves/files/kdebase-kioslaves-4.7.0-sftp.patch +++ /dev/null @@ -1,169 +0,0 @@ -commit 23e4ab03091e9d824e78171ea92a2da2326256d8 -Author: Dawit Alemayehu <adawit@kde.org> -Date: Thu Aug 25 00:29:14 2011 -0400 - - Fix the logic for user name change redirection so it won't break normal - login into sftp servers. - -diff --git a/kioslave/sftp/kio_sftp.cpp b/kioslave/sftp/kio_sftp.cpp -index eb5c8a8..2a55ff9 100644 ---- a/kioslave/sftp/kio_sftp.cpp -+++ b/kioslave/sftp/kio_sftp.cpp -@@ -429,12 +429,11 @@ sftpProtocol::~sftpProtocol() { - } - - void sftpProtocol::setHost(const QString& host, quint16 port, const QString& user, const QString& pass) { -- kDebug(KIO_SFTP_DB) << "setHost(): " << user << "@" << host << ":" << port; -+ kDebug(KIO_SFTP_DB) << user << "@" << host << ":" << port; - - // Close connection if the request is to another server... -- if (mConnected && -- (host != mHost || port != mPort || -- user != mUsername || pass != mPassword)) { -+ if (host != mHost || port != mPort || -+ user != mUsername || pass != mPassword) { - closeConnection(); - } - -@@ -451,9 +450,7 @@ void sftpProtocol::setHost(const QString& host, quint16 port, const QString& use - } - } - -- kDebug(KIO_SFTP_DB) << "setHost(): mPort=" << mPort; -- -- mUsername = mOrigUsername = user; -+ mUsername = user; - mPassword = pass; - } - -@@ -479,6 +476,7 @@ void sftpProtocol::openConnection() { - info.url.setPort(mPort); - info.url.setUser(mUsername); - info.username = mUsername; -+ const QString origPasswd (mPassword); - - // Check for cached authentication info if no password is specified... - if (mPassword.isEmpty()) { -@@ -497,6 +495,7 @@ void sftpProtocol::openConnection() { - int rc, state, hlen; - int timeout_sec = 30, timeout_usec = 0; - -+login_start: - mSession = ssh_new(); - if (mSession == NULL) { - error(KIO::ERR_INTERNAL, i18n("Could not create a new SSH session.")); -@@ -722,8 +721,12 @@ void sftpProtocol::openConnection() { - firstTime = false; - - if (!mUsername.isEmpty() && mUsername != info.username) { -- info.url.setUser(info.username); // update the AuthInfo URL's username - kDebug(KIO_SFTP_DB) << "Username changed from" << mUsername << "to" << info.username; -+ info.url.setUser(info.username); -+ mUsername = info.username; -+ mPassword = info.password; -+ closeConnection(); -+ goto login_start; - } - } - -@@ -770,6 +773,7 @@ void sftpProtocol::openConnection() { - setTimeoutSpecialCommand(KIO_SFTP_SPECIAL_TIMEOUT); - - mConnected = true; -+ mPassword = origPasswd; - connected(); - - info.password.fill('x'); -@@ -777,13 +781,17 @@ void sftpProtocol::openConnection() { - } - - void sftpProtocol::closeConnection() { -- kDebug(KIO_SFTP_DB) << "closeConnection()"; -+ kDebug(KIO_SFTP_DB); - -- sftp_free(mSftp); -- mSftp = NULL; -+ if (mSftp) { -+ sftp_free(mSftp); -+ mSftp = NULL; -+ } - -- ssh_disconnect(mSession); -- mSession = NULL; -+ if (mSession) { -+ ssh_disconnect(mSession); -+ mSession = NULL; -+ } - - mConnected = false; - } -@@ -1824,28 +1832,28 @@ sftpProtocol::GetRequest::~GetRequest() { - sftp_attributes_free(mSb); - } - --bool sftpProtocol::requiresUserNameRedirection() -+void sftpProtocol::requiresUserNameRedirection() - { -- kDebug(KIO_SFTP_DB) << "Connected ?" << mConnected << "Original:" << mOrigUsername << "Current:" << mUsername; -- if (!mConnected || mOrigUsername.isEmpty() || mOrigUsername == mUsername) -- return false; -- -- KUrl realURL; -- realURL.setProtocol( QLatin1String("sftp") ); -- realURL.setUser( mUsername ); -- realURL.setPass( mPassword ); -- realURL.setHost( mHost ); -- if ( mPort > 0) -- realURL.setPort( mPort ); -- kDebug(KIO_SFTP_DB) << "User name changed! Redirecting to" << realURL.prettyUrl(); -- redirection( realURL ); -- finished(); -- mOrigUsername = mUsername; -- return true; -+ KUrl redirectUrl; -+ redirectUrl.setProtocol( QLatin1String("sftp") ); -+ redirectUrl.setUser( mUsername ); -+ redirectUrl.setPass( mPassword ); -+ redirectUrl.setHost( mHost ); -+ if (mPort > 0) -+ redirectUrl.setPort( mPort ); -+ kDebug(KIO_SFTP_DB) << "redirecting to" << redirectUrl; -+ redirection( redirectUrl ); - } - - bool sftpProtocol::sftpConnect() - { -+ const QString origUsername = mUsername; - openConnection(); -- return !requiresUserNameRedirection(); -+ kDebug(KIO_SFTP_DB) << "connected ?" << mConnected << "username: old=" << origUsername << "new=" << mUsername; -+ if (!origUsername.isEmpty() && origUsername != mUsername) { -+ requiresUserNameRedirection(); -+ finished(); -+ return false; -+ } -+ return true; - } -diff --git a/kioslave/sftp/kio_sftp.h b/kioslave/sftp/kio_sftp.h -index 7cd16d1..c937e2e 100644 ---- a/kioslave/sftp/kio_sftp.h -+++ b/kioslave/sftp/kio_sftp.h -@@ -101,9 +101,6 @@ private: // Private variables - /** The sftp session for the connection */ - sftp_session mSftp; - -- /** Username originally set when setHost was called. */ -- QString mOrigUsername; -- - /** Username to use when connecting */ - QString mUsername; - -@@ -194,7 +191,7 @@ private: // private methods - KIO::UDSEntry &entry, short int details); - - QString canonicalizePath(const QString &path); -- bool requiresUserNameRedirection(); -+ void requiresUserNameRedirection(); - bool sftpConnect(); - }; - |