From: Patrick Donnelly Date: Mon, 24 Mar 2025 02:42:53 +0000 (-0400) Subject: auth: fix return type X-Git-Tag: testing/wip-pdonnell-testing-20260210.212535~101 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c93bad166a2600f0a0ff18dd73da51c86ffa24fd;p=ceph-ci.git auth: fix return type key type is an unsigned. Signed-off-by: Patrick Donnelly --- diff --git a/src/auth/Crypto.h b/src/auth/Crypto.h index fcbc48914c9..27ace688733 100644 --- a/src/auth/Crypto.h +++ b/src/auth/Crypto.h @@ -144,7 +144,7 @@ public: *this = CryptoKey(); } - int get_type() const { return type; } + unsigned get_type() const { return type; } utime_t get_created() const { return created; } void print(std::ostream& out) const;