From: Joey Schulze Date: Fri, 25 Apr 2008 13:41:31 +0000 (+0000) Subject: Split lines before column 80 X-Git-Tag: upstream_newmail_0-5~2 X-Git-Url: https://git.infodrom.org/?p=infodrom%2Fnewmail;a=commitdiff_plain;h=a0c33f6dd1d756c41a3e784725f9cef7d4288313;hp=e2281bb4b857be90c2a7cc1520e526d565df1007 Split lines before column 80 --- diff --git a/rfc2047.c b/rfc2047.c index cd6cc4b..82e9dee 100644 --- a/rfc2047.c +++ b/rfc2047.c @@ -173,7 +173,9 @@ char *convert_header(char *buf) wordp += 2; /* Look for next =?, spaces will be eaten between two encoded-words */ - if (*wordp && *wordp == ' ' && *(wordp+1) && *(wordp+1) == '=' && *(wordp+2) && *(wordp+2) == '?') + if (*wordp && *wordp == ' ' && + *(wordp+1) && *(wordp+1) == '=' && + *(wordp+2) && *(wordp+2) == '?') wordp++; switch (encoding) {