diff options
author | Werner Koch <[email protected]> | 2021-01-07 12:22:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-01-07 12:22:35 +0000 |
commit | ff30fcd3dc78c00ed87ce6bd3414b828bdf51e84 (patch) | |
tree | b0034213feaff0b93e0d41deef574d5ec3ca80dc | |
parent | wkd: Minor permission fix for created files. (diff) | |
download | gnupg-ff30fcd3dc78c00ed87ce6bd3414b828bdf51e84.tar.gz gnupg-ff30fcd3dc78c00ed87ce6bd3414b828bdf51e84.zip |
gpgconf: Fix description of two new options.
* tools/gpgconf-comp.c: Fix auto-key-import and include-key-block.
--
GnuPG-bug-id: 5221
Fixes-commit: 95b42278cafe7520d87168fb993ba715699e6bb6
-rw-r--r-- | tools/gpgconf-comp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 5903cf407..0618125cf 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -757,10 +757,10 @@ static gc_option_t gc_options_gpg[] = "gnupg", N_("|MECHANISMS|use MECHANISMS to locate keys by mail address"), GC_ARG_TYPE_STRING, GC_BACKEND_GPG }, { "auto-key-import", GC_OPT_FLAG_NONE, GC_LEVEL_BASIC, - N_("import missing key from a signature"), "gnupg", + "gnupg", N_("import missing key from a signature"), GC_ARG_TYPE_NONE, GC_BACKEND_GPG }, { "include-key-block", GC_OPT_FLAG_NONE, GC_LEVEL_BASIC, - N_("include the public key in signatures"), "gnupg", + "gnupg", N_("include the public key in signatures"), GC_ARG_TYPE_NONE, GC_BACKEND_GPG }, { "auto-key-retrieve", GC_OPT_FLAG_NONE, GC_LEVEL_EXPERT, NULL, NULL, GC_ARG_TYPE_NONE, GC_BACKEND_GPG }, |