[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:28:53 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=bc3fb51

The following commit has been merged in the master branch:
commit bc3fb512d407a5ad19d0fc2c16a8379c81afcf47
Author: Albert Vaca <albertvaka at gmail.com>
Date:   Mon Aug 24 21:27:24 2015 -0700

    Fixed incompatibility with OpenSSH 7.0
    
    BUG: 351725
---
 plugins/sftp/mounter.cpp | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
index a9c39f6..9241b18 100644
--- a/plugins/sftp/mounter.cpp
+++ b/plugins/sftp/mounter.cpp
@@ -120,8 +120,9 @@ void Mounter::onPakcageReceived(const NetworkPackage& np)
         << "-f"
         << "-o" << "IdentityFile=" + KdeConnectConfig::instance()->privateKeyPath()
         << "-o" << "StrictHostKeyChecking=no" //Do not ask for confirmation because it is not a known host
-        << "-o" << "UserKnownHostsFile=/dev/null"; //Prevent storing as a known host
-    
+        << "-o" << "UserKnownHostsFile=/dev/null" //Prevent storing as a known host
+        << "-o" << "HostKeyAlgorithms=+ssh-dss"; //https://bugs.kde.org/show_bug.cgi?id=351725
+
     m_proc->setProgram(program, arguments);
 
     //To debug
@@ -129,8 +130,8 @@ void Mounter::onPakcageReceived(const NetworkPackage& np)
     //m_proc->setStandardErrorFile("/tmp/kdeconnect-sftp.err");
 
     cleanMountPoint();
-    
-    qCDebug(KDECONNECT_PLUGIN_SFTP) << "Staring process: " << m_proc->program().join(" ");
+
+    qCDebug(KDECONNECT_PLUGIN_SFTP) << "Starting process: " << m_proc->program().join(" ");
     m_proc->start();
 }
 

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list