mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpg: avoid chatter about trustdb when --quiet
* g10/trustdb.c (tdb_check_trustdb_stale): avoid log_info() when opt.quiet -- gpg(1) says: -q, --quiet Try to be as quiet as possible. While the mentions about the stale trustdb information are edifying, they aren't necessary, and shouldn't be emitted when the user requests --quiet. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
This commit is contained in:
parent
c071be698e
commit
82146af85b
@ -938,11 +938,13 @@ tdb_check_trustdb_stale (void)
|
||||
if (opt.no_auto_check_trustdb)
|
||||
{
|
||||
pending_check_trustdb = 1;
|
||||
log_info (_("please do a --check-trustdb\n"));
|
||||
if (!opt.quiet)
|
||||
log_info (_("please do a --check-trustdb\n"));
|
||||
}
|
||||
else
|
||||
{
|
||||
log_info (_("checking the trustdb\n"));
|
||||
if (!opt.quiet)
|
||||
log_info (_("checking the trustdb\n"));
|
||||
validate_keys (0);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user