X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mime%2Frfc3676.c;h=3caa76f42d1296e82e710684992d99bd953a9729;hp=253c231ce7c2b59287953055b4b0119cb74a77a3;hb=819c071fa7efc8dffb4dd92f36f0111227ff692f;hpb=4e64abbe6c52d61bb01b85c266e33e30b257ba68 diff --git a/lib-mime/rfc3676.c b/lib-mime/rfc3676.c index 253c231..3caa76f 100644 --- a/lib-mime/rfc3676.c +++ b/lib-mime/rfc3676.c @@ -13,7 +13,7 @@ #include -#include +#include #include "state.h" #include "rfc3676.h" @@ -42,15 +42,12 @@ static void print_flowed_line (char *line, STATE * s, int ql) { width = MaxLineLength; } else { - if (option (OPTMBOXPANE)) - width = COLS - SidebarWidth - WrapMargin - ql - 1; - else - width = COLS - WrapMargin - ql - 1; + width = getmaxx(main_w) - WrapMargin - ql - 1; if (!(s->flags & M_REPLYING) && option (OPTSTUFFQUOTED)) --width; if (width < 0) - width = COLS; + width = getmaxx(main_w); } if (m_strlen(line) == 0) { @@ -187,7 +184,7 @@ int rfc3676_handler (BODY * a, STATE * s) { } p_realloc(&curline, curline_len + buf_len - buf_off); - strcpy (curline + curline_len - 1, buf + buf_off); + m_strcpy(curline + curline_len - 1, buf_len - buf_off + 1, buf + buf_off); curline_len += buf_len - buf_off; /* if this was a fixed line the paragraph is finished */ @@ -225,7 +222,7 @@ void rfc3676_space_stuff (HEADER* hdr) { if ((in = safe_fopen (hdr->content->filename, "r")) == NULL) return; - out = m_tempfile(tmpf, sizeof(tmpf), NONULL(Tempdir), NULL); + out = m_tempfile(tmpf, sizeof(tmpf), NONULL(mod_core.tmpdir), NULL); if (!out) { m_fclose(&in); return;