char *line = safe_malloc (LONG_STRING);
char *p;
LOFF_T loc;
- int matched;
size_t linelen = LONG_STRING;
char buf[LONG_STRING+1];
while ((loc = ftello (f)),
*(line = mutt_read_rfc822_line (f, line, &linelen)) != 0)
{
- matched = 0;
-
if ((p = strpbrk (line, ": \t")) == NULL || *p != ':')
{
char return_path[LONG_STRING];
if (!*p)
continue; /* skip empty header fields */
- matched = mutt_parse_rfc822_line (e, hdr, line, p, user_hdrs, weed, 1, &last);
-
+ mutt_parse_rfc822_line (e, hdr, line, p, user_hdrs, weed, 1, &last);
}
FREE (&line);