feat: add patch to fix upstream bug #443155
parent
66a224150e
commit
1cc2be4160
@ -0,0 +1,12 @@
|
||||
diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
|
||||
index 10059960ccae88c6c262bc9dd1fe960e47efbd7f..518213ecda59cdae0f05ce85c8d07b2449cce2aa 100644
|
||||
--- a/plugins/sftp/mounter.cpp
|
||||
+++ b/plugins/sftp/mounter.cpp
|
||||
@@ -127,6 +127,7 @@ void Mounter::onPackageReceived(const NetworkPacket &np)
|
||||
<< 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\\,ssh-rsa") // https://bugs.kde.org/show_bug.cgi?id=351725
|
||||
+ << QStringLiteral("-o") << QStringLiteral("PubkeyAcceptedKeyTypes=+ssh-rsa") // https://bugs.kde.org/show_bug.cgi?id=443155
|
||||
<< QStringLiteral("-o") << QStringLiteral("uid=") + QString::number(getuid()) << QStringLiteral("-o")
|
||||
<< QStringLiteral("gid=") + QString::number(getgid()) << QStringLiteral("-o") << QStringLiteral("reconnect") << QStringLiteral("-o")
|
||||
<< QStringLiteral("ServerAliveInterval=30") << QStringLiteral("-o") << QStringLiteral("password_stdin");
|
Loading…
Reference in new issue