From 4d38da02b4209aa4d086c0ba841670d9c33db90e Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Fri, 11 May 2001 22:16:17 +0000 Subject: [PATCH] Don't cut off the final part of ttachments with overlong lines. --- handler.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handler.c b/handler.c index 5b50eda5..d818bd65 100644 --- a/handler.c +++ b/handler.c @@ -1002,7 +1002,10 @@ static void text_plain_flowed_handler (BODY *a, STATE *s) t[1] = '\0'; if (l) + { fseek (s->fpin, -l, SEEK_CUR); + bytes += l; + } } else full = 0; -- 2.40.0