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
|
2018-07-05 13:57:50 +02:00
|
|
|
+++ mh.c 2018-07-04 12:55:15.079790270 +0000
|
|
|
|
@@ -1735,9 +1735,9 @@ static int mh_rewrite_message (CONTEXT *
|
2011-04-15 14:17:38 +02:00
|
|
|
char newpath[_POSIX_PATH_MAX];
|
|
|
|
char partpath[_POSIX_PATH_MAX];
|
|
|
|
|
|
|
|
- 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
|
|
|
|
+++ mutt.h 2018-07-04 12:54:40.604418656 +0000
|
2018-07-17 11:51:04 +02:00
|
|
|
@@ -690,7 +690,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
|