1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-31 22:18:03 +02:00

Fix bug 655

This commit is contained in:
Werner Koch 2006-07-31 11:40:14 +00:00
parent 064a4a6240
commit fede32ebd7
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2006-07-31 Werner Koch <wk@g10code.com>
* passphrase.c (agent_open): Use log_info instead of log_error to
allow a fallback without having gpg return an error code. Fixes
bug #655.
* encode.c (encode_crypt_files): Invalidate the whole fd cache.
This is a workaround for problems in iobuf's stupid fd cache.
* decrypt.c (decrypt_messages): Ditto.

View File

@ -359,7 +359,7 @@ agent_open (int try, const char *orig_codeset)
if (orig_codeset)
bind_textdomain_codeset (PACKAGE, orig_codeset);
#endif /*ENABLE_NLS*/
log_error ( _("can't connect to `%s': %s\n"),
log_info ( _("can't connect to `%s': %s\n"),
infostr, assuan_strerror (rc));
opt.use_agent = 0;
}