mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-09 21:28:51 +01:00
Fix bug 1045.
This commit is contained in:
parent
750990401c
commit
bc0202a8c2
@ -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):
|
||||||
|
@ -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 );
|
||||||
|
Loading…
Reference in New Issue
Block a user