From a0045571d2e59ab3b45ad8ea5f1f249e0b3359e7 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Tue, 20 Jul 2004 03:28:05 +0000 Subject: only copy 5 chars after the F if we actually have "From ", otherwise we 2004-07-19 Not Zed * camel-mime-filter-canon.c (filter): only copy 5 chars after the F if we actually have "From ", otherwise we might have F.{,4}\n instead and break eol canonicalisation. For #53355. svn path=/trunk/; revision=26679 --- camel/camel-mime-filter-canon.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'camel/camel-mime-filter-canon.c') diff --git a/camel/camel-mime-filter-canon.c b/camel/camel-mime-filter-canon.c index 43337ae856..557ddd943c 100644 --- a/camel/camel-mime-filter-canon.c +++ b/camel/camel-mime-filter-canon.c @@ -103,18 +103,12 @@ filter(CamelMimeFilter *f, char *in, size_t len, size_t prespace, char **out, si inptr++; if (inptr < inend-4) { if (strncmp(inptr, "rom ", 4) == 0) { - *o++ = '='; - *o++ = '4'; - *o++ = '6'; + strcpy(o, "=46rom "); + o+= 7; } else *o++ = 'F'; - *o++ = *inptr++; - *o++ = *inptr++; - *o++ = *inptr++; - *o++ = *inptr++; - } else { + } else break; - } } /* now scan for end of line */ -- cgit v1.2.3