1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Some work on the dirmngr

This commit is contained in:
Werner Koch 2010-07-23 16:16:14 +00:00
parent b6490d3656
commit a22c38baad
16 changed files with 1162 additions and 701 deletions

View file

@ -1,3 +1,8 @@
2010-07-20 Werner Koch <wk@g10code.com>
* mainproc.c (print_pkenc_list): Write a STATUS_ERROR. Fixes
bug#1255.
2010-06-17 Werner Koch <wk@g10code.com>
* gpg.c (main): Use CAST5 as default s2k algo. The macro

View file

@ -481,8 +481,11 @@ print_pkenc_list( struct kidlist_item *list, int failed )
}
}
else if (list->reason)
{
log_info(_("public key decryption failed: %s\n"),
g10_errstr(list->reason));
write_status_error ("pkdecrypt_failed", list->reason);
}
}
}