summaryrefslogtreecommitdiffstats
path: root/compose.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-05-24 19:18:32 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-05-24 19:18:32 +0000
commit16d853581f96b0bf3e771ac6360d994a2d773899 (patch)
treea22b29aec56e69eeb4ab285aefaf066f4aab0a15 /compose.c
parentf67f031d1862a66c84162dbdcbdb3a6a28e1e9bb (diff)
Make charset-hook work with an external iconv implementation.
Diffstat (limited to 'compose.c')
-rw-r--r--compose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compose.c b/compose.c
index 034424f2..c8ebae8a 100644
--- a/compose.c
+++ b/compose.c
@@ -402,7 +402,7 @@ static int change_attachment_charset (BODY *b)
if (mutt_get_field (_("Enter character set: "), buff, sizeof(buff), 0) == -1)
return 0;
- if ((cd = iconv_open (buff, "us-ascii")) == (iconv_t)-1)
+ if ((cd = mutt_iconv_open (buff, "us-ascii")) == (iconv_t)-1)
{
mutt_error (_("Character set %s is unknown."), buff);
return 0;