From 0a7d772a5c43eddad6fb3238614b8af722453919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Wed, 3 Nov 2021 15:16:26 +0100 Subject: [PATCH] gpgconf: Allow changing gpg's deprecated keyserver option * tools/gpgconf-comp.c (known_options_gpg): Add "keyserver". -- This allows Kleopatra to read and change the keyserver that is used by gpg if the deprecated keyserver option in gpg.conf is set. GnuPG-bug-id: 5462 --- tools/gpgconf-comp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 73921ddb2..b316d83d6 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -417,6 +417,7 @@ static known_option_t known_options_gpg[] = { "debug-level", GC_OPT_FLAG_ARG_OPT, GC_LEVEL_ADVANCED }, { "log-file", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, GC_ARG_TYPE_FILENAME }, + { "keyserver", GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE }, { "auto-key-locate", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED }, { "auto-key-import", GC_OPT_FLAG_NONE, GC_LEVEL_BASIC }, { "auto-key-retrieve", GC_OPT_FLAG_NONE, GC_LEVEL_EXPERT },