mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-17 15:44:34 +02:00
Added empty components for gpgsm and scdaemon.
This commit is contained in:
parent
1a709b341c
commit
e588e13d7c
@ -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>
|
2004-02-12 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* watchgnupg.c (main): Implement option "--".
|
* watchgnupg.c (main): Implement option "--".
|
||||||
|
@ -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. */
|
/* The options of the GC_COMPONENT_DIRMNGR component. */
|
||||||
static gc_option_t gc_options_dirmngr[] =
|
static gc_option_t gc_options_dirmngr[] =
|
||||||
{
|
{
|
||||||
@ -479,6 +493,12 @@ typedef enum
|
|||||||
/* The GPG Agent. */
|
/* The GPG Agent. */
|
||||||
GC_COMPONENT_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. */
|
/* The LDAP Directory Manager for CRLs. */
|
||||||
GC_COMPONENT_DIRMNGR,
|
GC_COMPONENT_DIRMNGR,
|
||||||
|
|
||||||
@ -507,6 +527,8 @@ static struct
|
|||||||
} gc_component[] =
|
} gc_component[] =
|
||||||
{
|
{
|
||||||
{ "gpg-agent", NULL, "GPG Agent", gc_options_gpg_agent },
|
{ "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 }
|
{ "dirmngr", NULL, "CRL Manager", gc_options_dirmngr }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user