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 + + * gpgconf-comp.c: Added empty components for gpgsm and scdaemon. + 2004-02-12 Werner Koch * 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 } };