diff options
Diffstat (limited to 'tools/gpgconf.h')
-rw-r--r-- | tools/gpgconf.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/gpgconf.h b/tools/gpgconf.h index adb90a1f6..6494a2069 100644 --- a/tools/gpgconf.h +++ b/tools/gpgconf.h @@ -46,9 +46,12 @@ void gpgconf_failure (gpg_error_t err) GPGRT_ATTR_NORETURN; /* Component system. Each component is a set of options that can be * configured at the same time. If you change this, don't forget to - * update GC_COMPONENT in gpgconf-comp.c. */ + * update gc_component[] in gpgconf-comp.c. */ typedef enum { + /* Any component, used as a wildcard arg. */ + GC_COMPONENT_ANY, + /* The classic GPG for OpenPGP. */ GC_COMPONENT_GPG, @@ -69,7 +72,7 @@ typedef enum /* The number of components. */ GC_COMPONENT_NR - } gc_component_t; + } gc_component_id_t; /* Initialize the components. */ |