aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--g10/ChangeLog3
-rw-r--r--g10/passphrase.c1
2 files changed, 2 insertions, 2 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 5f88ec3d8..9eb7e56ca 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -4,7 +4,8 @@
gpg-agent. New arg to return the used protocol version.
(agent_get_passphrase): Implemented new protocol here.
(passphrase_clear_cache): Ditto.
-
+ (readline): New.
+
2002-01-15 Timo Schulz <[email protected]>
* encode.c (encode_crypt_files): Fail if --output is used.
diff --git a/g10/passphrase.c b/g10/passphrase.c
index bec1273b7..12a507692 100644
--- a/g10/passphrase.c
+++ b/g10/passphrase.c
@@ -647,7 +647,6 @@ agent_get_passphrase ( u32 *keyid, int mode )
for (i=3; i < nread && hexdigitp (pw+i); i+=2)
pw[pwlen++] = xtoi_2 (pw+i);
pw[pwlen] = 0; /* make a C String */
- log_debug ("passphrase=`%s'\n", pw);
agent_close (fd);
free_public_key( pk );
return pw;