2015-01-26 17:35:10 +01:00
|
|
|
---
|
2018-07-05 13:57:50 +02:00
|
|
|
mh.c | 6 +++---
|
|
|
|
mutt.h | 2 +-
|
|
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
2015-01-26 17:35:10 +01:00
|
|
|
|
2016-05-12 16:10:16 +02:00
|
|
|
--- mh.c
|
2020-01-15 07:59:22 +01:00
|
|
|
+++ mh.c 2020-01-14 13:31:51.368358811 +0000
|
2020-11-10 10:16:35 +01:00
|
|
|
@@ -1818,9 +1818,9 @@ static int mh_rewrite_message (CONTEXT *
|
2019-01-02 15:21:18 +01:00
|
|
|
BUFFER *newpath = NULL;
|
|
|
|
BUFFER *partpath = NULL;
|
2011-04-15 14:17:38 +02:00
|
|
|
|
|
|
|
- long old_body_offset = h->content->offset;
|
|
|
|
- long old_body_length = h->content->length;
|
|
|
|
- long old_hdr_lines = h->lines;
|
|
|
|
+ LOFF_T old_body_offset = h->content->offset;
|
|
|
|
+ LOFF_T old_body_length = h->content->length;
|
|
|
|
+ LOFF_T old_hdr_lines = h->lines;
|
|
|
|
|
2018-07-05 13:57:50 +02:00
|
|
|
if ((dest = mx_open_new_message (ctx, h, 0)) == NULL)
|
2011-04-15 14:17:38 +02:00
|
|
|
return -1;
|
2018-07-05 13:57:50 +02:00
|
|
|
--- mutt.h
|
2020-01-15 07:59:22 +01:00
|
|
|
+++ mutt.h 2020-01-14 13:31:51.368358811 +0000
|
2020-11-10 10:16:35 +01:00
|
|
|
@@ -782,7 +782,7 @@ typedef struct body
|
2018-07-05 13:57:50 +02:00
|
|
|
PARAMETER *parameter; /* parameters of the content-type */
|
|
|
|
char *description; /* content-description */
|
|
|
|
char *form_name; /* Content-Disposition form-data name param */
|
|
|
|
- long hdr_offset; /* offset in stream where the headers begin.
|
|
|
|
+ LOFF_T hdr_offset; /* offset in stream where the headers begin.
|
|
|
|
* this info is used when invoking metamail,
|
|
|
|
* where we need to send the headers of the
|
|
|
|
* attachment
|