aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2002-01-19 20:27:10 +0000
committerWerner Koch <[email protected]>2002-01-19 20:27:10 +0000
commit1e7350da8efeeac79c2f0d8070bf0f7ca8967f1f (patch)
tree17c810bb4e4947fee371442c4eb611aef238743c
parent* passphrase.c (agent_open): Add support for the new Assuan based (diff)
downloadgnupg-1e7350da8efeeac79c2f0d8070bf0f7ca8967f1f.tar.gz
gnupg-1e7350da8efeeac79c2f0d8070bf0f7ca8967f1f.zip
Removed debugging output
-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;