From b3f66ec310fa40e78cc01a6fe55b97d4eda73eee Mon Sep 17 00:00:00 2001 From: reverse Date: Wed, 19 Aug 2026 01:33:34 +0000 Subject: [PATCH] customtitle: return Fail (not Ok) when the crypto pool is at capacity and the TITLE auth is denied, matching the synchronous verify path --- src/modules/customtitle.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/customtitle.rs b/src/modules/customtitle.rs index b599df4..0881df4 100644 --- a/src/modules/customtitle.rs +++ b/src/modules/customtitle.rs @@ -98,6 +98,7 @@ impl Command for TitleCmd { }); if !started { deny(s, uid); + return CmdResult::Fail; // crypto pool full — consistent with the sync path } return CmdResult::Ok; }