Commit 77ecb6d7 77ecb6d7f3ad8e9b41d9a5e926c64c4f087b706d by Sergey Poznyakoff

(mh_context_read): Allow for header continuation lines.

1 parent ff953d36
...@@ -116,7 +116,7 @@ mh_context_read (mh_context_t *ctx) ...@@ -116,7 +116,7 @@ mh_context_read (mh_context_t *ctx)
116 if (!*q || *q == '#') 116 if (!*q || *q == '#')
117 continue; 117 continue;
118 118
119 while (*q) 119 for (q = buf; *q;)
120 *p++ = *q++; 120 *p++ = *q++;
121 } 121 }
122 fclose (fp); 122 fclose (fp);
......