aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2004-04-29 19:00:37 +0000
committerMarcus Brinkmann <[email protected]>2004-04-29 19:00:37 +0000
commit8370e202cc74d1cba0166ab727d222c44d6b09c3 (patch)
tree76727f8b4dc2f485388de13432c018240502fd64
parentpost release version bump (diff)
downloadgnupg-8370e202cc74d1cba0166ab727d222c44d6b09c3.tar.gz
gnupg-8370e202cc74d1cba0166ab727d222c44d6b09c3.zip
2004-04-29 Marcus Brinkmann <[email protected]>
* gpgconf-comp.c (change_options_program): Turn on utf8-strings in the gpgconf specific part of the config file for the GnuPG backend.
-rw-r--r--tools/ChangeLog6
-rw-r--r--tools/gpgconf-comp.c5
2 files changed, 11 insertions, 0 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog
index 5fe13021b..efc78ea9e 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-29 Marcus Brinkmann <[email protected]>
+
+ * gpgconf-comp.c (change_options_program): Turn on utf8-strings in
+ the gpgconf specific part of the config file for the GnuPG
+ backend.
+
2004-04-28 Werner Koch <[email protected]>
* gpgconf-comp.c: Add --ocsp-signer for the dirmngr backend.
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c
index 338c43119..089818fd4 100644
--- a/tools/gpgconf-comp.c
+++ b/tools/gpgconf-comp.c
@@ -2075,6 +2075,11 @@ change_options_program (gc_component_t component, gc_backend_t backend,
Now, dump the changed options (except for those we are going to
revert to their default), and write the end marker, possibly
followed by the rest of the original file. */
+
+ /* We have to turn on UTF8 strings for GnuPG. */
+ if (backend == GC_BACKEND_GPG)
+ fprintf (src_file, "utf8-strings\n");
+
option = gc_component[component].options;
while (option->name)
{