From: Thomas Roessler Date: Wed, 13 Sep 2000 15:01:01 +0000 (+0000) Subject: s/iconv_open/mutt_iconv_open/. Suggested by EGE. X-Git-Tag: mutt-1-3-9-rel~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35e547e824cfc127a70bdc34b86802a7a8d16d89;p=mutt s/iconv_open/mutt_iconv_open/. Suggested by EGE. --- diff --git a/sendlib.c b/sendlib.c index 9f8f00d2..c3fb733c 100644 --- 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);