Split lines before column 80
[infodrom/newmail] / rfc2047.c
index cd6cc4b..82e9dee 100644 (file)
--- 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) {