1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-20 01:02:44 +02:00

(agent_get_passphrase): Cast UIDLEN to int. Noted

by Christian Cornelssen.
This commit is contained in:
Werner Koch 2004-10-17 13:28:37 +00:00
parent b03a7a6f3b
commit ad3382bdc7
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2004-10-17 Werner Koch <wk@g10code.com>
* passphrase.c (agent_get_passphrase): Cast UIDLEN to int. Noted
by Christian Cornelssen.
2004-10-16 David Shaw <dshaw@jabberwocky.com>
* parse-packet.c (parse_one_sig_subpkt, enum_sig_subpkt): Don't
@ -3154,8 +3159,8 @@
(import_one): Use it here.
Use merge_keys_and_selfsig in the interactive mode to avoid
wrong key information.
* status.h: Add new status code.
* status.c: Ditto.
* status.h: Add new status code.
* status.c: Ditto.
2002-12-13 David Shaw <dshaw@jabberwocky.com>

View File

@ -700,7 +700,7 @@ agent_get_passphrase ( u32 *keyid, int mode, const char *tryagain_text,
+ uidlen + 15 + strlen(algo_name) + keystrlen()
+ strlen (timestr) + strlen (maink) );
sprintf (atext, PROMPTSTRING,
uidlen, uid,
(int)uidlen, uid,
nbits_from_pk (pk), algo_name, keystr(&keyid[0]), timestr,
maink );
m_free (uid);