diff options
author | Werner Koch <wk@gnupg.org> | 2004-02-18 18:00:56 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2004-02-18 18:00:56 +0100 |
commit | e588e13d7c85388db70b75c18273ba79715ecd3d (patch) | |
tree | 5979a26990f4ffc9a6caed1c3bbd49636b582846 | |
parent | * gpgsm.c (set_debug): Set the new --debug-level flags. (diff) | |
download | gnupg2-e588e13d7c85388db70b75c18273ba79715ecd3d.tar.xz gnupg2-e588e13d7c85388db70b75c18273ba79715ecd3d.zip |
Added empty components for gpgsm and scdaemon.
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgconf-comp.c | 22 |
2 files changed, 26 insertions, 0 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index bd99271d6..7796acbed 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,7 @@ +2004-02-18 Werner Koch <wk@gnupg.org> + + * gpgconf-comp.c: Added empty components for gpgsm and scdaemon. + 2004-02-12 Werner Koch <wk@gnupg.org> * watchgnupg.c (main): Implement option "--". diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index efe2bf5a8..857ba0840 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -369,6 +369,20 @@ static gc_option_t gc_options_gpg_agent[] = }; +/* The options of the GC_COMPONENT_SCDAEMON component. */ +static gc_option_t gc_options_scdaemon[] = + { + GC_OPTION_NULL + }; + + +/* The options of the GC_COMPONENT_GPGSM component. */ +static gc_option_t gc_options_gpgsm[] = + { + GC_OPTION_NULL + }; + + /* The options of the GC_COMPONENT_DIRMNGR component. */ static gc_option_t gc_options_dirmngr[] = { @@ -479,6 +493,12 @@ typedef enum /* The GPG Agent. */ GC_COMPONENT_GPG_AGENT, + /* The Smardcard Daemon. */ + GC_COMPONENT_SCDAEMON, + + /* GPG for S/MIME. */ + GC_COMPONENT_GPGSM, + /* The LDAP Directory Manager for CRLs. */ GC_COMPONENT_DIRMNGR, @@ -507,6 +527,8 @@ static struct } gc_component[] = { { "gpg-agent", NULL, "GPG Agent", gc_options_gpg_agent }, + { "scdaemon", NULL, "Smartcard Daemon", gc_options_scdaemon }, + { "gpgsm", NULL, "GPG for S/MIME", gc_options_gpgsm }, { "dirmngr", NULL, "CRL Manager", gc_options_dirmngr } }; |