From 5b9585e42977f46639dc3784352e9c4be4cd9cac Mon Sep 17 00:00:00 2001 From: Alexander Golubev Date: Sat, 17 Feb 2024 15:59:48 +0300 Subject: 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 --- tdeioslave/sftp/tdeio_sftp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tdeioslave/sftp/tdeio_sftp.h') 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 -- cgit v1.2.1