e04faea002
- Applied spec-cleaner - Refreshed patches - Update to version 2.2.8: * gpg: Decryption of messages not using the MDC mode will now lead to a hard failure even if a legacy cipher algorithm was used. The option --ignore-mdc-error can be used to turn this failure into a warning. Take care: Never use that option unconditionally or without a prior warning. * gpg: The MDC encryption mode is now always used regardless of the cipher algorithm or any preferences. For testing --rfc2440 can be used to create a message without an MDC. * gpg: Sanitize the diagnostic output of the original file name in verbose mode. * gpg: Detect suspicious multiple plaintext packets in a more reliable way. * gpg: Fix the duplicate key signature detection code. * gpg: The options --no-mdc-warn, --force-mdc, --no-force-mdc, --disable-mdc and --no-disable-mdc have no more effect. * agent: Add DBUS_SESSION_BUS_ADDRESS and a few other envvars to the list of startup environment variables. OBS-URL: https://build.opensuse.org/request/show/615233 OBS-URL: https://build.opensuse.org/package/show/Base:System/gpg2?expand=0&rev=198
18 lines
711 B
Diff
18 lines
711 B
Diff
---
|
|
g10/passphrase.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: gnupg-2.2.8/g10/passphrase.c
|
|
===================================================================
|
|
--- gnupg-2.2.8.orig/g10/passphrase.c
|
|
+++ gnupg-2.2.8/g10/passphrase.c
|
|
@@ -70,7 +70,7 @@ encode_s2k_iterations (int iterations)
|
|
{
|
|
/* Don't print an error if an older agent is used. */
|
|
if (err && gpg_err_code (err) != GPG_ERR_ASS_PARAMETER)
|
|
- log_error (_("problem with the agent: %s\n"), gpg_strerror (err));
|
|
+ log_info (_("problem with the agent: %s\n"), gpg_strerror (err));
|
|
/* Default to 65536 which we used up to 2.0.13. */
|
|
return 96;
|
|
}
|