diff options
Diffstat (limited to 'camel/camel-pgp-context.c')
-rw-r--r-- | camel/camel-pgp-context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-pgp-context.c b/camel/camel-pgp-context.c index 20d35d1a7b..40ec9420b5 100644 --- a/camel/camel-pgp-context.c +++ b/camel/camel-pgp-context.c @@ -1037,9 +1037,9 @@ pgp_verify (CamelCipherContext *ctx, CamelCipherHash hash, CamelStream *istream, int ret; inbuf = diagnostics; - ret = iconv (cd, &inbuf, &inlen, &outbuf, &outlen); + ret = e_iconv (cd, &inbuf, &inlen, &outbuf, &outlen); if (ret >= 0) { - iconv (cd, NULL, 0, &outbuf, &outlen); + e_iconv (cd, NULL, 0, &outbuf, &outlen); } e_iconv_close (cd); |