mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpgconf: Fix --apply-defaults.
* tools/gpgconf-comp.c: Skip pinentry also in process_all mode. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
12a5265afa
commit
6ca3c28da4
@ -2286,9 +2286,6 @@ gc_component_retrieve_options (int component)
|
||||
gc_backend_t backend;
|
||||
gc_option_t *option;
|
||||
|
||||
if (component == GC_COMPONENT_PINENTRY)
|
||||
return; /* Dummy module for now. */
|
||||
|
||||
for (backend = 0; backend < GC_BACKEND_NR; backend++)
|
||||
backend_seen[backend] = 0;
|
||||
|
||||
@ -2301,6 +2298,9 @@ gc_component_retrieve_options (int component)
|
||||
|
||||
do
|
||||
{
|
||||
if (component == GC_COMPONENT_PINENTRY)
|
||||
continue; /* Skip this dummy component. */
|
||||
|
||||
option = gc_component[component].options;
|
||||
|
||||
while (option && option->name)
|
||||
|
Loading…
x
Reference in New Issue
Block a user