diff options
author | Alexander Golubev <fatzer2@gmail.com> | 2024-01-21 15:26:25 +0300 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2024-03-04 11:04:11 +0000 |
commit | a19610bb735faf89fcd27c6885bf81e53c9b2d7a (patch) | |
tree | 15ac5a7cf6a67e648680b2b8a3ac1bee94aae95c /tdeioslave/sftp/tdeio_sftp.h | |
parent | 9c0a0ce976549c1849eecb497be2d8bdf49d7aa5 (diff) | |
download | tdebase-a19610bb735faf89fcd27c6885bf81e53c9b2d7a.tar.gz tdebase-a19610bb735faf89fcd27c6885bf81e53c9b2d7a.zip |
tdeioslave/sftp: avoid explicit password caching
All password caching we need actually already autmagically
done by openPassDlg().
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'tdeioslave/sftp/tdeio_sftp.h')
-rw-r--r-- | tdeioslave/sftp/tdeio_sftp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tdeioslave/sftp/tdeio_sftp.h b/tdeioslave/sftp/tdeio_sftp.h index 68c8a0020..f73b37015 100644 --- a/tdeioslave/sftp/tdeio_sftp.h +++ b/tdeioslave/sftp/tdeio_sftp.h @@ -118,7 +118,8 @@ private: // Private variables /** Username to use when connecting */ TQString mUsername; - /** User's password */ + /** User's password. Note: the password would be set only if it was passed to + * setHost() or received from cache */ TQString mPassword; /** The open file */ |