mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
gpg: Do not show two informational diagnostics with quiet.
* g10/trustdb.c (verify_own_keys): Silence informational diagnostic. -- This silences these notes with --quiet gpg: Note: RFC4880bis features are enabled. gpg: key EE65E8C75D41FD1D marked as ultimately trusted GnuPG-bug-id: 4634 Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
2a45800b2f
commit
f14ddeb89c
@ -3752,7 +3752,10 @@ main (int argc, char **argv)
|
||||
log_info(_("WARNING: program may create a core file!\n"));
|
||||
|
||||
if (opt.flags.rfc4880bis)
|
||||
log_info ("Note: RFC4880bis features are enabled.\n");
|
||||
{
|
||||
if (!opt.quiet)
|
||||
log_info ("Note: RFC4880bis features are enabled.\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
opt.mimemode = 0; /* This will use text mode instead. */
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user