From: Patrick Donnelly Date: Mon, 24 Mar 2025 02:42:53 +0000 (-0400) Subject: auth: fix return type X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=002028f4a00451f94987e5daf576ad3f92862971;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 792b24e79cf..a52d9e20ba1 100644 --- a/src/auth/Crypto.h +++ b/src/auth/Crypto.h @@ -143,7 +143,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;