summaryrefslogtreecommitdiffstats
path: root/tdeioslave/sftp/tdeio_sftp.h
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2024-02-17 15:59:48 +0300
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-03-04 23:34:46 +0900
commite55cf59eba369164cd5a1e0f348bee8a3974ba00 (patch)
treea6fca9c86b8b2dad862e70994d466b3ed7fdc481 /tdeioslave/sftp/tdeio_sftp.h
parent11c1ec50470cc78f1ba88e01d11af61468432fbc (diff)
downloadtdebase-e55cf59eba369164cd5a1e0f348bee8a3974ba00.tar.gz
tdebase-e55cf59eba369164cd5a1e0f348bee8a3974ba00.zip
tdeioslave/sftp: use unsigned to store auth method flags/bitsets
The libssh defines those flags as unsigned. Technically ssh_auth_list() still returns int, but its guranteed to be bitset of those flags. Signed-off-by: Alexander Golubev <fatzer2@gmail.com> (cherry picked from commit 5b9585e42977f46639dc3784352e9c4be4cd9cac)
Diffstat (limited to 'tdeioslave/sftp/tdeio_sftp.h')
-rw-r--r--tdeioslave/sftp/tdeio_sftp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeioslave/sftp/tdeio_sftp.h b/tdeioslave/sftp/tdeio_sftp.h
index 303014ead..75b295cfd 100644
--- a/tdeioslave/sftp/tdeio_sftp.h
+++ b/tdeioslave/sftp/tdeio_sftp.h
@@ -199,7 +199,7 @@ private: // private methods
class SSHAuthMethod {
public:
/** libssh's flag for he method */
- virtual int flag() = 0;
+ virtual unsigned flag() = 0;
/** The user-friendly (probably translated) name of the method */
virtual TQString name() {return flagToStr(flag());}
/** Actually do perform the auth process */
@@ -210,10 +210,10 @@ public:
virtual ~SSHAuthMethod() {};
/** Returns a name for the given libssh auth method flag */
- static TQString flagToStr(int method);
+ static TQString flagToStr(unsigned method);
/** Returns a list of names for all the methods set in the given libssh auth method bitset */
- static TQStringList bitsetToStr(int method);
+ static TQStringList bitsetToStr(unsigned method);
};
#endif