summaryrefslogtreecommitdiffstats
path: root/headers.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-09-30 22:05:24 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-09-30 22:05:24 +0000
commit0ca18eaca57d9b40649a342b169676a6426e9365 (patch)
tree00cea0d7556a3f4639d26dd77c27b1b6aa7a3bdd /headers.c
parent51320ed99fc1bffd70836c7bc6b8a6e6cd370289 (diff)
Add a resend-message function (similar to the _old_ edit-message),
and redo large parts of mutt_prepare_edit_message (now mutt_prepare_template).
Diffstat (limited to 'headers.c')
-rw-r--r--headers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/headers.c b/headers.c
index 68a5813a..3d12c0aa 100644
--- a/headers.c
+++ b/headers.c
@@ -88,7 +88,7 @@ void mutt_edit_headers (const char *editor,
/* Read the temp file back in */
ifp = fopen (path, "r");
ofp = safe_fopen (body, "w");
- n = mutt_read_rfc822_header (ifp, NULL, 1);
+ n = mutt_read_rfc822_header (ifp, NULL, 1, 0);
while ((i = fread (buffer, 1, sizeof (buffer), ifp)) > 0)
fwrite (buffer, 1, i, ofp);
fclose (ofp);