(mh_context_read): Allow for header continuation lines.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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); | ... | ... |
-
Please register or sign in to post a comment