File: upstream_68fb3d74_Add-debug-message.patch

package info (click to toggle)
kio-extras 4%3A25.04.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 31,936 kB
  • sloc: cpp: 28,907; ansic: 3,084; perl: 1,048; xml: 116; sh: 92; python: 28; makefile: 9
file content (24 lines) | stat: -rw-r--r-- 836 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From 68fb3d74b9095e20160c62993e90785ea918e522 Mon Sep 17 00:00:00 2001
From: Facundo Almeida <facundoalmeida@gmail.com>
Date: Tue, 20 May 2025 22:03:04 -0300
Subject: [PATCH] Add debug message

---
 sftp/kio_sftp.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sftp/kio_sftp.cpp b/sftp/kio_sftp.cpp
index 27c345e0a..b8117edf5 100644
--- a/sftp/kio_sftp.cpp
+++ b/sftp/kio_sftp.cpp
@@ -889,6 +889,7 @@ Result SFTPWorker::openConnectionWithoutCloseOnError()
                 return Result::fail(KIO::ERR_CANNOT_LOGIN, i18n("Authentication failed."));
             }
             if (rc == SSH_AUTH_PARTIAL) {
+                qCDebug(KIO_SFTP_LOG) << "Public key authentication succeeded, but another method is still required";
                 method = ssh_auth_list(mSession);
                 break;
             }
-- 
GitLab