diff options
author | Marcus Brinkmann <[email protected]> | 2004-04-20 16:02:30 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2004-04-20 16:02:30 +0000 |
commit | 2c9aac608b25072c823779af56411dcf14bf0ae8 (patch) | |
tree | 80f4021204f645d5931991fb390e193373e9f412 | |
parent | * pcsc-wrapper.c: New. (diff) | |
download | gnupg-2c9aac608b25072c823779af56411dcf14bf0ae8.tar.gz gnupg-2c9aac608b25072c823779af56411dcf14bf0ae8.zip |
2004-04-20 Marcus Brinkmann <[email protected]>
* gpgconf-comp.c (gc_options_gpg_agent): Change type of
ignore-cache-for-signing option to GC_ARG_TYPE_NONE.
Diffstat (limited to '')
-rw-r--r-- | tools/ChangeLog | 5 | ||||
-rw-r--r-- | tools/gpgconf-comp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 0a4046cbd..6da70fdda 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,8 @@ +2004-04-20 Marcus Brinkmann <[email protected]> + + * gpgconf-comp.c (gc_options_gpg_agent): Change type of + ignore-cache-for-signing option to GC_ARG_TYPE_NONE. + 2004-04-07 Werner Koch <[email protected]> * gpgconf-comp.c (my_dgettext): Switch the codeset once to utf-8. diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 0b56129c1..8a5c96033 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -468,7 +468,7 @@ static gc_option_t gc_options_gpg_agent[] = GC_ARG_TYPE_UINT32, GC_BACKEND_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_UINT32, GC_BACKEND_GPG_AGENT }, + GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT }, { "no-grab", GC_OPT_FLAG_NONE, GC_LEVEL_EXPERT, "gnupg", "do not grab keyboard and mouse", GC_ARG_TYPE_NONE, GC_BACKEND_GPG_AGENT }, |