X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=charset.c;h=ba6b4227b61d68877be5298655917a9d7d99d560;hp=dcbe1ee6039acc6ebc4797f223622229db3d30e3;hb=3e9a92ab72e04aecb0fc4098098a1b57c5101d84;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd diff --git a/charset.c b/charset.c index dcbe1ee..ba6b422 100644 --- a/charset.c +++ b/charset.c @@ -23,12 +23,12 @@ #include #include +#include #include #include #include "mutt.h" #include "charset.h" -#include "ascii.h" #ifndef EILSEQ @@ -193,7 +193,7 @@ void mutt_set_langinfo_charset (void) char buff[LONG_STRING]; char buff2[LONG_STRING]; - strfcpy (buff, nl_langinfo (CODESET), sizeof (buff)); + m_strcpy(buff, sizeof(buff), nl_langinfo(CODESET)); mutt_canonical_charset (buff2, sizeof (buff2), buff); /* finally, set $charset */ @@ -226,16 +226,16 @@ void mutt_canonical_charset (char *dest, size_t dlen, const char *name) else if (!ascii_strncasecmp (name, "iso8859-", 8)) snprintf (scratch, sizeof (scratch), "iso_8859-%s", name + 8); else - strfcpy (scratch, NONULL (name), sizeof (scratch)); + m_strcpy(scratch, sizeof(scratch), NONULL(name)); for (i = 0; PreferredMIMENames[i].key; i++) if (!ascii_strcasecmp (scratch, PreferredMIMENames[i].key) || - !str_casecmp (scratch, PreferredMIMENames[i].key)) { - strfcpy (dest, PreferredMIMENames[i].pref, dlen); + !m_strcasecmp(scratch, PreferredMIMENames[i].key)) { + m_strcpy(dest, dlen, PreferredMIMENames[i].pref); return; } - strfcpy (dest, scratch, dlen); + m_strcpy(dest, dlen, scratch); /* for cosmetics' sake, transform to lowercase. */ for (p = dest; *p; p++) @@ -336,7 +336,7 @@ size_t mutt_iconv (iconv_t cd, const char **inbuf, size_t * inbytesleft, outrepl = "?"; my_iconv(cd, 0, 0, &ob, &obl); if (obl) { - int n = m_strlen(outrepl); + size_t n = m_strlen(outrepl); if (n > obl) { outrepl = "?"; @@ -399,8 +399,6 @@ int mutt_convert_string (char **ps, const char *from, const char *to, p_delete(ps); *ps = buf; - - str_adjust (ps); return 0; } else @@ -448,7 +446,7 @@ FGETCONV *fgetconv_open (FILE * file, const char *from, const char *to, fc->inrepls = mutt_is_utf8 (to) ? repls : repls + 1; } else - fc = p_new(struct fgetconv_not, 1); + fc = p_new(struct fgetconv_s, 1); fc->file = file; fc->cd = cd; return (FGETCONV *) fc; @@ -546,7 +544,7 @@ const char *mutt_get_first_charset (const char *charset) return "us-ascii"; if (!(c1 = strchr (c, ':'))) return ((char*) charset); - strfcpy (fcharset, c, c1 - c + 1); + m_strcpy(fcharset, c1 - c + 1, c); return fcharset; } @@ -556,7 +554,8 @@ static size_t convert_string (const char *f, size_t flen, { iconv_t cd; char *buf, *ob; - size_t obl, n; + size_t obl; + ssize_t n; int e; cd = mutt_iconv_open (to, from, 0); @@ -565,7 +564,7 @@ static size_t convert_string (const char *f, size_t flen, obl = 4 * flen + 1; ob = buf = xmalloc(obl); n = my_iconv(cd, &f, &flen, &ob, &obl); - if (n == (size_t) (-1) || my_iconv(cd, 0, 0, &ob, &obl) == (size_t) (-1)) { + if (n < 0 || my_iconv(cd, 0, 0, &ob, &obl) < 0) { e = errno; p_delete(&buf); iconv_close (cd);