From 93e9f9aedde3ca294eb884edef81adf76e10eb22 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 30 Apr 2004 03:03:34 +0000 Subject: [PATCH] Added more runtime flags for the gpg-agent backend. --- tools/ChangeLog | 5 +++++ tools/gpgconf-comp.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/tools/ChangeLog b/tools/ChangeLog index efc78ea9e..529892643 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,8 @@ +2004-04-30 Werner Koch + + * gpgconf-comp.c: Added more runtime flags for the gpg-agent + backend. + 2004-04-29 Marcus Brinkmann * gpgconf-comp.c (change_options_program): Turn on utf8-strings in diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 089818fd4..35ad9b38e 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -430,10 +430,10 @@ static gc_option_t gc_options_gpg_agent[] = { "Monitor", GC_OPT_FLAG_GROUP, GC_LEVEL_BASIC, NULL, "Options controlling the diagnostic output" }, - { "verbose", GC_OPT_FLAG_LIST, GC_LEVEL_BASIC, + { "verbose", GC_OPT_FLAG_LIST|GC_OPT_FLAG_RUNTIME, GC_LEVEL_BASIC, "gnupg", "verbose", GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT }, - { "quiet", GC_OPT_FLAG_NONE, GC_LEVEL_BASIC, + { "quiet", GC_OPT_FLAG_NONE|GC_OPT_FLAG_RUNTIME, GC_LEVEL_BASIC, "gnupg", "be somewhat more quiet", GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT }, { "no-greeting", GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE, @@ -450,7 +450,7 @@ static gc_option_t gc_options_gpg_agent[] = { "Debug", GC_OPT_FLAG_GROUP, GC_LEVEL_ADVANCED, "gnupg", "Options useful for debugging" }, - { "debug-level", GC_OPT_FLAG_ARG_OPT, GC_LEVEL_ADVANCED, + { "debug-level", GC_OPT_FLAG_ARG_OPT|GC_OPT_FLAG_RUNTIME, GC_LEVEL_ADVANCED, "gnupg", "|LEVEL|set the debugging level to LEVEL", GC_ARG_TYPE_STRING, GC_BACKEND_GPG_AGENT }, { "log-file", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, @@ -469,7 +469,7 @@ static gc_option_t gc_options_gpg_agent[] = { "ignore-cache-for-signing", GC_OPT_FLAG_RUNTIME, GC_LEVEL_BASIC, "gnupg", "do not use the PIN cache when signing", GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT }, - { "no-grab", GC_OPT_FLAG_NONE, GC_LEVEL_EXPERT, + { "no-grab", GC_OPT_FLAG_RUNTIME, GC_LEVEL_EXPERT, "gnupg", "do not grab keyboard and mouse", GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT },