diff options
author | Werner Koch <wk@gnupg.org> | 2004-11-24 15:50:20 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2004-11-24 15:50:20 +0100 |
commit | 0b135bc6d481dc5dab549d1a357f725add7b9756 (patch) | |
tree | 0da9630d9183acee19d7b50b400bb992e0d09d17 /tools | |
parent | Add --ignore-http-dp and (diff) | |
download | gnupg2-0b135bc6d481dc5dab549d1a357f725add7b9756.tar.xz gnupg2-0b135bc6d481dc5dab549d1a357f725add7b9756.zip |
Add dirmngr options to gpgconf and updated the DE translation
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgconf-comp.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 201a496a8..ac8d54a47 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,7 +1,7 @@ 2004-11-24 Werner Koch <wk@g10code.com> - * gpgconf-comp.c <dirmngr>: Add --ignore-http-dp and - --ignore-ldap-dp. + * gpgconf-comp.c <dirmngr>: Add --ignore-http-dp, --ignore-ldap-dp + and --ignore-ocsp-service-url. 2004-11-23 Werner Koch <wk@g10code.com> diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index d2eac7dd9..8873cdf13 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -790,6 +790,9 @@ static gc_option_t gc_options_dirmngr[] = { "allow-ocsp", GC_OPT_FLAG_NONE, GC_LEVEL_BASIC, "dirmngr", "allow sending OCSP requests", GC_ARG_TYPE_NONE, GC_BACKEND_DIRMNGR }, + { "ignore-ocsp-servic-url", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, + "dirmngr", "ignore certificate contained OCSP service URLs", + GC_ARG_TYPE_NONE, GC_BACKEND_DIRMNGR }, { "ocsp-responder", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, "dirmngr", "|URL|use OCSP responder at URL", GC_ARG_TYPE_STRING, GC_BACKEND_DIRMNGR }, |