diff options
author | Werner Koch <[email protected]> | 2019-08-23 09:45:49 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2019-08-23 09:47:12 +0000 |
commit | 215858aba342e6f2b9a7c93f579638279af3a561 (patch) | |
tree | f093aa2a5e1a70658434c574355646557150d892 | |
parent | gpgconf: Suggest the use of --gpgconf-test on --launch problems. (diff) | |
download | gnupg-215858aba342e6f2b9a7c93f579638279af3a561.tar.gz gnupg-215858aba342e6f2b9a7c93f579638279af3a561.zip |
gpg: Do not show an informational diagnostics with quiet.
* g10/trustdb.c (verify_own_keys): Silence informational diagnostic.
--
This silences this notes with --quiet
gpg: key EE65E8C75D41FD1D marked as ultimately trusted
GnuPG-bug-id: 4634
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | g10/trustdb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index 8ef6db542..e7d254cfa 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -303,7 +303,9 @@ verify_own_keys (ctrl_t ctrl) release_public_key_parts (&pk); } - log_info (_("key %s marked as ultimately trusted\n"),keystr(k->kid)); + if (!opt.quiet) + log_info (_("key %s marked as ultimately trusted\n"), + keystr(k->kid)); } } |