X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mime%2Frfc2231.c;h=e7c10533e40bb0367a0641de209641d673c37928;hp=865877def5b14c3101c4fab78d4a22e26b734efe;hb=0f6739c5be4203bec0fa32962e6ab13349da703b;hpb=d0dc8fb657cff90709c15d4b106415b868857f6a diff --git a/lib-mime/rfc2231.c b/lib-mime/rfc2231.c index 865877d..e7c1053 100644 --- a/lib-mime/rfc2231.c +++ b/lib-mime/rfc2231.c @@ -141,7 +141,7 @@ static void purge_empty_parameters(PARAMETER **headp) if (!p->attribute || !p->value) { *headp = p->next; p->next = NULL; - mutt_free_parameter(&p); + parameter_delete(&p); } else { headp = &(*headp)->next; } @@ -193,7 +193,7 @@ rfc2231_join_continuations(PARAMETER **head, rfc2231_param *par) if (value) { if (encoded) mutt_convert_string (&value, charset, Charset, M_ICONV_HOOK_FROM); - *head = mutt_new_parameter (); + *head = parameter_new(); (*head)->attribute = m_strdup(attribute); (*head)->value = value; head = &(*head)->next; @@ -220,9 +220,7 @@ void rfc2231_decode_parameters (PARAMETER ** headp) int encoded; int idx; - short dirty = 0; /* set to 1 when we may have created - * empty parameters. - */ + short dirty = 0; /* 1 when we may have created empty parameters. */ if (!headp) return; @@ -244,8 +242,8 @@ void rfc2231_decode_parameters (PARAMETER ** headp) if (option (OPTRFC2047PARAMS) && p->value && strstr (p->value, "=?")) rfc2047_decode (&p->value); else if (!option (OPTSTRICTMIME)) { - if (ascii_strcasecmp (AssumedCharset, "us-ascii")) - mutt_convert_nonmime_string (&p->value); + if (mime_which_token(AssumedCharset, -1) == MIME_US_ASCII) + mutt_convert_nonmime_string(&p->value); } *last = p; @@ -306,7 +304,7 @@ int rfc2231_encode_string(char **s) char *charset = NULL; char *e, *p, *t, *d = NULL; int escapes = 0; - size_t dlen = 0; + ssize_t dlen = 0; /* * A shortcut to detect pure 7bit data.