commit cca1d5d3d111cf31f811bcbadfcf634a16859c8c
parent 38a69f674eaa7b4855d4b5b6f4b4fc7a0e79a3e3
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Sun, 10 Jul 2016 14:57:16 +0200
Added --batch option to manual gpg executable calls.
This, together with --no-tty, is to make these calls
really non-interactive, and helps against the calls
hanging on Windows occasionally.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/pgpcore/pgp_viewer.c b/src/plugins/pgpcore/pgp_viewer.c
@@ -166,7 +166,7 @@ static void pgpview_show_mime_part(TextView *textview, MimeInfo *partinfo)
gpgme_get_key(ctx, sig->fpr, &key, 0);
if (!key) {
gchar *gpgbin = get_gpg_executable_name();
- gchar *cmd = g_strdup_printf("\"%s\" --no-tty --recv-keys %s",
+ gchar *cmd = g_strdup_printf("\"%s\" --batch --no-tty --recv-keys %s",
(gpgbin ? gpgbin : "gpg"), sig->fpr);
AlertValue val = G_ALERTDEFAULT;
if (!prefs_common_get_prefs()->work_offline) {