- Add kdeconnect-openssh-8.8.patch (boo#1191886), (kde#351725) and (kde#443155) See also https://bugs.archlinux.org/task/72350 This fixes the problem that kdeconnect with openssh >= 8.8 can no longer browse devices. Depends on sr#928350 OBS-URL: https://build.opensuse.org/request/show/928351 OBS-URL: https://build.opensuse.org/package/show/KDE:Applications/kdeconnect-kde?expand=0&rev=52
15 lines
1.2 KiB
Diff
15 lines
1.2 KiB
Diff
diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
|
|
index 2a484186..23ddc616 100644
|
|
--- a/plugins/sftp/mounter.cpp
|
|
+++ b/plugins/sftp/mounter.cpp
|
|
@@ -129,7 +129,8 @@ void Mounter::onPackageReceived(const NetworkPacket& np)
|
|
<< QStringLiteral("-o") << QStringLiteral("IdentityFile=") + KdeConnectConfig::instance().privateKeyPath()
|
|
<< QStringLiteral("-o") << QStringLiteral("StrictHostKeyChecking=no") //Do not ask for confirmation because it is not a known host
|
|
<< QStringLiteral("-o") << QStringLiteral("UserKnownHostsFile=/dev/null") //Prevent storing as a known host
|
|
- << QStringLiteral("-o") << QStringLiteral("HostKeyAlgorithms=+ssh-dss") //https://bugs.kde.org/show_bug.cgi?id=351725
|
|
+ << QStringLiteral("-o") << QStringLiteral("HostKeyAlgorithms=+ssh-rsa") //https://bugs.kde.org/show_bug.cgi?id=351725
|
|
+ << QStringLiteral("-o") << QStringLiteral("PubkeyAcceptedKeyTypes=+ssh-rsa")
|
|
<< QStringLiteral("-o") << QStringLiteral("uid=") + QString::number(getuid())
|
|
<< QStringLiteral("-o") << QStringLiteral("gid=") + QString::number(getgid())
|
|
<< QStringLiteral("-o") << QStringLiteral("reconnect")
|