diff options
author | Marcus Brinkmann <[email protected]> | 2004-03-12 14:42:31 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2004-03-12 14:42:31 +0000 |
commit | 2bb4c53e7a99254e1a95810efbb2df0bf8f6bed7 (patch) | |
tree | 39a82889fd432a94e680a567e00eb87d14321a75 | |
parent | 2004-03-12 Marcus Brinkmann <[email protected]> (diff) | |
download | gnupg-2bb4c53e7a99254e1a95810efbb2df0bf8f6bed7.tar.gz gnupg-2bb4c53e7a99254e1a95810efbb2df0bf8f6bed7.zip |
2004-03-12 Marcus Brinkmann <[email protected]>
* gpgconf-comp.c (gc_component_change_options): Set the filenames
of the option's backend, not of the component.
Also use GC_BACKEND_NR, not GC_COMPONENT_NR.
-rw-r--r-- | tools/ChangeLog | 1 | ||||
-rw-r--r-- | tools/gpgconf-comp.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 077115a58..1489eb051 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -2,6 +2,7 @@ * gpgconf-comp.c (gc_component_change_options): Set the filenames of the option's backend, not of the component. + Also use GC_BACKEND_NR, not GC_COMPONENT_NR. 2004-03-09 Werner Koch <[email protected]> diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index d792d1d75..a55883e55 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -2057,7 +2057,7 @@ gc_component_change_options (int component, FILE *in) { int i; - for (i = 0; i < GC_COMPONENT_NR; i++) + for (i = 0; i < GC_BACKEND_NR; i++) { if (src_pathname[i]) { @@ -2089,7 +2089,7 @@ gc_component_change_options (int component, FILE *in) int saved_errno = errno; /* An error occured. */ - for (i = 0; i < GC_COMPONENT_NR; i++) + for (i = 0; i < GC_BACKEND_NR; i++) { if (src_pathname[i]) { |