X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=commands.c;h=2054d12e5331aae02470fd0712f51e5c31b5f494;hp=01ea63979aef2e30e9be52114fa9ecaa527552e1;hb=d36bae62c0892340fc8636158df066039f257a8f;hpb=ac813896ca32d850febc2d95065ac4fa040f11f9 diff --git a/commands.c b/commands.c index 01ea639..2054d12 100644 --- a/commands.c +++ b/commands.c @@ -25,7 +25,6 @@ #include #include #include -#include #include @@ -37,6 +36,7 @@ #include #include "mutt.h" +#include "alias.h" #include "recvattach.h" #include "sort.h" #include "copy.h" @@ -44,7 +44,6 @@ #include "pager.h" #include #include "mutt_idna.h" -#include "rfc1524.h" #include #include #include @@ -143,7 +142,6 @@ int mutt_display_message (HEADER * cur) (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) | CH_DECODE | CH_FROM); if (res == 0 && (ferror(fpout) || feof(fpout))) { - debug_print (1, ("_mutt_copy_message failed to detect EOF!\n")); res = -1; } @@ -842,7 +840,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) { - size_t l; + ssize_t l; for (p = b->parameter; p; p = p->next) { l = m_strlen(buf);