mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
gpg: Silence trustdb messages with --quiet.
* g10/trustdb.c (validate_keys): Silence messages Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
3e1b451c5d
commit
458c2f2d32
@ -2451,10 +2451,11 @@ validate_keys (int interactive)
|
|||||||
for (kar=keys; kar->keyblock; kar++)
|
for (kar=keys; kar->keyblock; kar++)
|
||||||
store_validation_status (depth, kar->keyblock, stored);
|
store_validation_status (depth, kar->keyblock, stored);
|
||||||
|
|
||||||
log_info (_("depth: %d valid: %3d signed: %3d"
|
if (!opt.quiet)
|
||||||
" trust: %d-, %dq, %dn, %dm, %df, %du\n"),
|
log_info (_("depth: %d valid: %3d signed: %3d"
|
||||||
depth, valids, key_count, ot_unknown, ot_undefined,
|
" trust: %d-, %dq, %dn, %dm, %df, %du\n"),
|
||||||
ot_never, ot_marginal, ot_full, ot_ultimate );
|
depth, valids, key_count, ot_unknown, ot_undefined,
|
||||||
|
ot_never, ot_marginal, ot_full, ot_ultimate );
|
||||||
|
|
||||||
/* Build a new kdlist from all fully valid keys in KEYS */
|
/* Build a new kdlist from all fully valid keys in KEYS */
|
||||||
if (klist != utk_list)
|
if (klist != utk_list)
|
||||||
@ -2520,8 +2521,9 @@ validate_keys (int interactive)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
tdbio_write_nextcheck (next_expire);
|
tdbio_write_nextcheck (next_expire);
|
||||||
log_info (_("next trustdb check due at %s\n"),
|
if (!opt.quiet)
|
||||||
strtimestamp (next_expire));
|
log_info (_("next trustdb check due at %s\n"),
|
||||||
|
strtimestamp (next_expire));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(tdbio_update_version_record()!=0)
|
if(tdbio_update_version_record()!=0)
|
||||||
|
Loading…
Reference in New Issue
Block a user