gnupg/g10 (ChangeLog passphrase.c)

cvs user wk cvs at cvs.gnupg.org
Sun Oct 17 15:25:42 CEST 2004


    Date: Sunday, October 17, 2004 @ 15:28:37
  Author: wk
    Path: /cvs/gnupg/gnupg/g10

Modified: ChangeLog passphrase.c

(agent_get_passphrase): Cast UIDLEN to int.  Noted
by Christian Cornelssen.


--------------+
 ChangeLog    |    9 +++++++--
 passphrase.c |    2 +-
 2 files changed, 8 insertions(+), 3 deletions(-)


Index: gnupg/g10/ChangeLog
diff -u gnupg/g10/ChangeLog:1.622 gnupg/g10/ChangeLog:1.623
--- gnupg/g10/ChangeLog:1.622	Sun Oct 17 00:48:20 2004
+++ gnupg/g10/ChangeLog	Sun Oct 17 15:28:37 2004
@@ -1,3 +1,8 @@
+2004-10-17  Werner Koch  <wk at g10code.com>
+
+	* passphrase.c (agent_get_passphrase): Cast UIDLEN to int.  Noted
+	by Christian Cornelssen.
+
 2004-10-16  David Shaw  <dshaw at 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 at jabberwocky.com>
 
Index: gnupg/g10/passphrase.c
diff -u gnupg/g10/passphrase.c:1.63 gnupg/g10/passphrase.c:1.64
--- gnupg/g10/passphrase.c:1.63	Fri Oct 15 15:16:57 2004
+++ gnupg/g10/passphrase.c	Sun Oct 17 15:28:37 2004
@@ -700,7 +700,7 @@
                         + 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);




More information about the Gnupg-commits mailing list