diff options
| author | NIIBE Yutaka <[email protected]> | 2024-10-31 02:47:55 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2024-10-31 08:33:40 +0000 |
| commit | a7c81efe51872122df20a970012af67b0c7dc466 (patch) | |
| tree | ad523feb61584f2afd86cc2c26b6cdcb07259f8d | |
| parent | gpg: Do not fail with an error for a "Note:" diagnostic (diff) | |
| download | gnupg-a7c81efe51872122df20a970012af67b0c7dc466.tar.gz gnupg-a7c81efe51872122df20a970012af67b0c7dc466.zip | |
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 <[email protected]>
Fixes-commit: 4275d5fa7a51731544d243ba16628a9958ffe3ce
| -rw-r--r-- | agent/trustlist.c | 4 |
1 files 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; |
