aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2002-07-25 16:08:14 +0000
committerMarcus Brinkmann <[email protected]>2002-07-25 16:08:14 +0000
commit8359ecc707b0a864383c6fa7435257f019a63a7e (patch)
treef36809e05b7acec0a77ec8455fb1b45169dba8b3
parent2002-07-25 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-8359ecc707b0a864383c6fa7435257f019a63a7e.tar.gz
gpgme-8359ecc707b0a864383c6fa7435257f019a63a7e.zip
2002-07-25 Marcus Brinkmann <[email protected]>
* rungpg.c (_gpgme_gpg_new): Always set utf8 as charset.
Diffstat (limited to '')
-rw-r--r--gpgme/ChangeLog2
-rw-r--r--gpgme/rungpg.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog
index 8dc46cbd..a23e9d17 100644
--- a/gpgme/ChangeLog
+++ b/gpgme/ChangeLog
@@ -11,6 +11,8 @@
(gpgme_key_get_string_attr): Add GPGME_ATTR_SIG_SUMMARY case to
silence gcc warning.
+ * rungpg.c (_gpgme_gpg_new): Always set utf8 as charset.
+
2002-07-03 Marcus Brinkmann <[email protected]>
* gpgme.c (gpgme_set_io_cbs): Deal with CTX being NULL.
diff --git a/gpgme/rungpg.c b/gpgme/rungpg.c
index 15115e56..358a7d4b 100644
--- a/gpgme/rungpg.c
+++ b/gpgme/rungpg.c
@@ -292,6 +292,8 @@ _gpgme_gpg_new (GpgObject *r_gpg)
_gpgme_gpg_add_arg (gpg, buf);
}
_gpgme_gpg_add_arg (gpg, "--no-tty");
+ _gpgme_gpg_add_arg (gpg, "--charset");
+ _gpgme_gpg_add_arg (gpg, "utf8");
leave:
if (rc)