]> granicus.if.org Git - mutt/commitdiff
s/iconv_open/mutt_iconv_open/. Suggested by EGE.
authorThomas Roessler <roessler@does-not-exist.org>
Wed, 13 Sep 2000 15:01:01 +0000 (15:01 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Wed, 13 Sep 2000 15:01:01 +0000 (15:01 +0000)
sendlib.c

index 9f8f00d2207f712cbec0c7cde62528f8102893d0..c3fb733cc610d6352baadf7c2b0721a9fb630fc5 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -674,7 +674,7 @@ static size_t convert_file_to (FILE *file, const char *fromcode,
   CONTENT_STATE *states;
   size_t *score;
 
-  cd1 = iconv_open ("UTF-8", fromcode);
+  cd1 = mutt_iconv_open ("UTF-8", fromcode);
   if (cd1 == (iconv_t)(-1))
     return -1;
 
@@ -688,7 +688,7 @@ static size_t convert_file_to (FILE *file, const char *fromcode,
   memset (infos, 0, ncodes * sizeof (CONTENT));
   for (i = 0; i < ncodes; i++)
     if (strcasecmp (tocodes[i], "UTF-8"))
-      cd[i] = iconv_open (tocodes[i], "UTF-8");
+      cd[i] = mutt_iconv_open (tocodes[i], "UTF-8");
     else
       /* Special case for conversion to UTF-8 */
       cd[i] = (iconv_t)(-1), score[i] = (size_t)(-1);