From a7c81efe51872122df20a970012af67b0c7dc466 Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Thu, 31 Oct 2024 11:47:55 +0900 Subject: [PATCH] agent: Fix status output for LISTTRUSTED. * agent/trustlist.c (istrusted_internal): When LISTMODE is enabled, TRUSTLISTFPR status output should be done. -- GnuPG-bug-id: 7363 Signed-off-by: NIIBE Yutaka Fixes-commit: 4275d5fa7a51731544d243ba16628a9958ffe3ce --- agent/trustlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/trustlist.c b/agent/trustlist.c index 5fa5e255b..9831d04ef 100644 --- a/agent/trustlist.c +++ b/agent/trustlist.c @@ -484,8 +484,8 @@ istrusted_internal (ctrl_t ctrl, const char *fpr, int listmode, int *r_disabled, in a locked state. */ if (already_locked) ; - else if (ti->flags.relax || ti->flags.cm || ti->flags.qual - || ti->flags.de_vs) + else if (listmode || ti->flags.relax || ti->flags.cm + || ti->flags.qual || ti->flags.de_vs) { unlock_trusttable (); locked = 0;