]> granicus.if.org Git - mutt/commitdiff
Revert "Fix truncation of long filenames in attachments."
authorKevin McCarthy <kevin@8t8.us>
Sat, 20 Apr 2019 22:43:59 +0000 (15:43 -0700)
committerKevin McCarthy <kevin@8t8.us>
Sat, 20 Apr 2019 22:43:59 +0000 (15:43 -0700)
This reverts commit f476d0aecd6f88db5291427fced21a8e834ca181.

The commit allowed the generation of illegal length header lines.  A
correct fix needs to implement parameter continuations.

I will work on that, but in case I don't get it in before 1.12,
preserve the hard truncation.

sendlib.c

index 0bf0b19415e909dbb8aa29294324e293b6309b19..4acb64698f18e77acffca3c7e7d9b2b0c1866f43 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -294,7 +294,7 @@ static void encode_8bit (FGETCONV *fc, FILE *fout, int istext)
 int mutt_write_mime_header (BODY *a, FILE *f)
 {
   PARAMETER *p;
-  char buffer[HUGE_STRING];
+  char buffer[STRING];
   char *t;
   char *fn;
   int len;