diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-10-23 05:50:21 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-10-23 05:50:21 +0800 |
commit | b80a058e5534b668e11d7e6b31408acf52bf4bd3 (patch) | |
tree | b5e7e5d1ee7b4cc884dd263d7ea58797cfffa4c9 /camel/camel-pgp-context.c | |
parent | 739e7cd1da237df90e26d979101c3624aef4a779 (diff) | |
download | gsoc2013-evolution-b80a058e5534b668e11d7e6b31408acf52bf4bd3.tar.gz gsoc2013-evolution-b80a058e5534b668e11d7e6b31408acf52bf4bd3.tar.zst gsoc2013-evolution-b80a058e5534b668e11d7e6b31408acf52bf4bd3.zip |
If we are kludging around a inline-pgp signed part, do some charset
2001-10-22 Jeffrey Stedfast <fejj@ximian.com>
* camel-pgp-mime.c (camel_pgp_mime_part_verify): If we are
kludging around a inline-pgp signed part, do some charset
conversion to protect any 8bit text.
svn path=/trunk/; revision=13896
Diffstat (limited to 'camel/camel-pgp-context.c')
-rw-r--r-- | camel/camel-pgp-context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-pgp-context.c b/camel/camel-pgp-context.c index 79a53fd633..20d35d1a7b 100644 --- a/camel/camel-pgp-context.c +++ b/camel/camel-pgp-context.c @@ -1027,7 +1027,7 @@ pgp_verify (CamelCipherContext *ctx, CamelCipherHash hash, CamelStream *istream, desc = outbuf = g_new (unsigned char, outlen + 1); - locale = e_iconv_locale_charset(); + locale = e_iconv_locale_charset (); if (!locale) locale = "iso-8859-1"; |