From 5538326ee1e25b06e1688c3e5150ce737bc5d686 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Sun, 23 Mar 2025 22:42:53 -0400 Subject: [PATCH] auth: fix return type key type is an unsigned. Signed-off-by: Patrick Donnelly --- src/auth/Crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3