diff options
author | Thomas Roessler <roessler@does-not-exist.org> | 2001-09-26 10:33:09 +0000 |
---|---|---|
committer | Thomas Roessler <roessler@does-not-exist.org> | 2001-09-26 10:33:09 +0000 |
commit | a6d921f52dc66a0720f9908f462139f83f69646c (patch) | |
tree | 5c7320ab8fc1d8fccbbf2fa2e12caa334a094389 /attach.c | |
parent | 2e6bdb2e203b2035f224fceaea0391f21b16fd7c (diff) |
Fix inconsistencies between printing and displaying of
message/rfc822 body parts.
Diffstat (limited to 'attach.c')
-rw-r--r-- | attach.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -543,7 +543,7 @@ int mutt_view_attachment (FILE *fp, BODY *a, int flag, HEADER *hdr, /* Use built-in handler */ set_option (OPTVIEWATTACH); /* disable the "use 'v' to view this part" * message in case of error */ - if (mutt_decode_save_attachment (fp, a, pagerfile, 1, 0)) + if (mutt_decode_save_attachment (fp, a, pagerfile, M_DISPLAY, 0)) { unset_option (OPTVIEWATTACH); goto return_error; @@ -801,7 +801,7 @@ int mutt_decode_save_attachment (FILE *fp, BODY *m, char *path, HEADER *saved_hdr = NULL; memset (&s, 0, sizeof (s)); - s.flags = (displaying ? M_DISPLAY : 0); + s.flags = displaying; if (flags == M_SAVE_APPEND) s.fpout = fopen (path, "a"); @@ -981,7 +981,7 @@ int mutt_print_attachment (FILE *fp, BODY *a) fpout = NULL; mutt_mktemp (newfile); - if (mutt_decode_save_attachment (fp, a, newfile, 0, 0) == 0) + if (mutt_decode_save_attachment (fp, a, newfile, M_PRINTING, 0) == 0) { dprint (2, (debugfile, "successfully decoded %s type attachment to %s\n", |