From cca1d5d3d111cf31f811bcbadfcf634a16859c8c Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Sun, 10 Jul 2016 14:57:16 +0200 Subject: [PATCH] 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. --- src/plugins/pgpcore/pgp_viewer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/pgpcore/pgp_viewer.c b/src/plugins/pgpcore/pgp_viewer.c index f4256fb8f..d1b0448a5 100644 --- 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) { -- 2.25.1