1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-20 14:51:42 +02:00

Fix bug 1045.

This commit is contained in:
Werner Koch 2009-05-11 09:37:25 +00:00
parent 750990401c
commit bc0202a8c2
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2009-05-11 Werner Koch <wk@g10code.com> 2009-05-11 Werner Koch <wk@g10code.com>
* skclist.c (build_sk_list): Use log_info for "duplicated entry".
Fixes bug#1045.
* encode.c (encode_simple, encode_crypt): Print empty file warning * encode.c (encode_simple, encode_crypt): Print empty file warning
only in verbose mode. Closes bug#1039. only in verbose mode. Closes bug#1039.
* sign.c (write_plaintext_packet): * sign.c (write_plaintext_packet):

View File

@ -154,7 +154,7 @@ build_sk_list( STRLIST locusr, SK_LIST *ret_sk_list,
*/ */
if ( is_duplicated_entry ( locusr_orig, locusr ) ) if ( is_duplicated_entry ( locusr_orig, locusr ) )
{ {
log_error(_("skipped \"%s\": duplicated\n"), locusr->d ); log_info (_("skipped \"%s\": duplicated\n"), locusr->d );
continue; continue;
} }
sk = xmalloc_clear( sizeof *sk ); sk = xmalloc_clear( sizeof *sk );