mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
gpg: Suppress "public key already present" in quiet mode.
* g10/pkclist.c (build_pk_list): Print two diagnostics only in non-quiet mode. -- (back-ported from commit 8325d616593187ff227853de0295e3269b96edcb)
This commit is contained in:
parent
f795a0d59e
commit
3a4b96e665
@ -833,8 +833,9 @@ build_pk_list( STRLIST rcpts, PK_LIST *ret_pk_list, unsigned int use )
|
||||
if (key_present_in_pk_list(pk_list, pk) == 0)
|
||||
{
|
||||
free_public_key (pk); pk = NULL;
|
||||
log_info (_("%s: skipped: public key already present\n"),
|
||||
rov->d);
|
||||
if (!opt.quiet)
|
||||
log_info (_("%s: skipped: public key already present\n"),
|
||||
rov->d);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1113,8 +1114,9 @@ build_pk_list( STRLIST rcpts, PK_LIST *ret_pk_list, unsigned int use )
|
||||
if (!key_present_in_pk_list(pk_list, pk))
|
||||
{
|
||||
free_public_key(pk); pk = NULL;
|
||||
log_info(_("%s: skipped: public key already present\n"),
|
||||
remusr->d);
|
||||
if (!opt.quiet)
|
||||
log_info(_("%s: skipped: public key already present\n"),
|
||||
remusr->d);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user