X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=commands.c;h=280a3fd6859aefc3751a6d4f69b650eafbd73d7e;hb=230399f9632c37b66c1c117a17e8327eae6b3235;hp=648966c4d3e2c0bf5bc519a986564267490ae1b7;hpb=2a2f2f9a5bad73c883b7f9c9b4166d932b6aaf37;p=apps%2Fmadmutt.git diff --git a/commands.c b/commands.c index 648966c..280a3fd 100644 --- a/commands.c +++ b/commands.c @@ -21,10 +21,7 @@ #include #include -#include -#include -#include -#include +#include #include @@ -240,7 +237,7 @@ void ci_bounce_message (HEADER * h, int *redraw) char prompt[SHORT_STRING]; char buf[HUGE_STRING] = { 0 }; address_t *adr = NULL; - const char *err = NULL; + char *err = NULL; int rc; if (h) @@ -839,7 +836,7 @@ void mutt_edit_content_type (HEADER * h, BODY * b, FILE * fp) snprintf (buf, sizeof (buf), "%s/%s", TYPE (b), b->subtype); m_strcpy(obuf, sizeof(obuf), buf); if (b->parameter) { - PARAMETER *p; + parameter_t *p; ssize_t l; for (p = b->parameter; p; p = p->next) { @@ -893,7 +890,7 @@ void mutt_edit_content_type (HEADER * h, BODY * b, FILE * fp) b->force_charset |= charset_changed ? 1 : 0; if (!is_multipart(b) && b->parts) - mutt_free_body (&b->parts); + body_list_wipe(&b->parts); if (!mutt_is_message_type (b->type, b->subtype) && b->hdr) { b->hdr->content = NULL; header_delete(&b->hdr);