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)
if (!*q || *q == '#')
continue;
while (*q)
for (q = buf; *q;)
*p++ = *q++;
}
fclose (fp);
......