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

Preparing a release candidate

This commit is contained in:
Werner Koch 2006-07-28 09:52:11 +00:00
parent 519435f06c
commit f19e8892a2
10 changed files with 6043 additions and 16 deletions

View file

@ -2,9 +2,9 @@
* keygen.c (gen_card_key_with_backup): Initialize sk_{un}protected.
* import.c (import): Init KEYBLOCK.
* import.c (import): Initialize KEYBLOCK.
* pkclist.c (edit_ownertrust): Intialize trust to avoid ggc
* pkclist.c (edit_ownertrust): Intialize trust to avoid gcc
warning.
* parse-packet.c (parse_comment): Cap comments at 65k.

View file

@ -413,7 +413,7 @@ open_card (void)
if (slot == -1)
{
write_status_text (STATUS_CARDCTRL, "5");
log_error ("card reader not available\n");
log_error (_("card reader not available\n"));
return NULL;
}
}
@ -443,7 +443,7 @@ open_card (void)
if (rc)
{
write_status_text (STATUS_CARDCTRL, "4");
log_info ("selecting openpgp failed: %s\n", gpg_strerror (rc));
log_info (_("selecting openpgp failed: %s\n"), gpg_strerror (rc));
apdu_close_reader (slot);
xfree (app);
return NULL;