X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=rfc2231.c;fp=rfc2231.c;h=87856ac154b0480a47d05d52e6a8169dbfbf2948;hp=778995b48cf62ae0e833aa684d3d9a8c751b6e8f;hb=7f7a0be369840b290248e5b0302beb447fa1b3cd;hpb=308c7080ccca40d4865d8810f5528331d9ed61ff diff --git a/rfc2231.c b/rfc2231.c index 778995b..87856ac 100644 --- a/rfc2231.c +++ b/rfc2231.c @@ -22,12 +22,12 @@ #endif #include +#include #include "mutt.h" #include "ascii.h" #include "mime.h" #include "charset.h" -#include "lib/str.h" #include "rfc2047.h" #include "rfc2231.h" @@ -270,7 +270,7 @@ static void rfc2231_join_continuations (PARAMETER ** head, if (encoded && par->encoded) rfc2231_decode_one (par->value, valp); - vl = str_len (par->value); + vl = m_strlen(par->value); p_realloc(&value, l + vl + 1); strcpy (value + l, par->value); /* __STRCPY_CHECKED__ */ @@ -286,7 +286,7 @@ static void rfc2231_join_continuations (PARAMETER ** head, if (encoded) mutt_convert_string (&value, charset, Charset, M_ICONV_HOOK_FROM); *head = mutt_new_parameter (); - (*head)->attribute = str_dup (attribute); + (*head)->attribute = m_strdup(attribute); (*head)->value = value; head = &(*head)->next; } @@ -315,10 +315,10 @@ int rfc2231_encode_string (char **pd) if (!Charset || !SendCharset || !(charset = mutt_choose_charset (Charset, SendCharset, - *pd, str_len (*pd), &d, &dlen))) { - charset = str_dup (Charset ? Charset : "unknown-8bit"); + *pd, m_strlen(*pd), &d, &dlen))) { + charset = m_strdup(Charset ? Charset : "unknown-8bit"); d = *pd; - dlen = str_len (d); + dlen = m_strlen(d); } if (!mutt_is_us_ascii (charset)) @@ -331,9 +331,9 @@ int rfc2231_encode_string (char **pd) ++ext; if (encode) { - e = p_new(char, dlen + 2 * ext + str_len(charset) + 3); + e = p_new(char, dlen + 2 * ext + m_strlen(charset) + 3); sprintf (e, "%s''", charset); /* __SPRINTF_CHECKED__ */ - t = e + str_len (e); + t = e + m_strlen(e); for (s = d, slen = dlen; slen; s++, slen--) if (*s < 0x20 || *s >= 0x7f || strchr (MimeSpecials, *s) || strchr ("*'%", *s)) {