Skip to content

Commit

Permalink
Merge branch 'jc/mailinfo'
Browse files Browse the repository at this point in the history
* jc/mailinfo:
  mailinfo: skip bogus UNIX From line inside body
  • Loading branch information
Junio C Hamano committed May 28, 2006
2 parents 51937e5 + 81c5cf7 commit d177e58
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mailinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,18 @@ static int eatspace(char *line)
#define SEEN_FROM 01
#define SEEN_DATE 02
#define SEEN_SUBJECT 04
#define SEEN_PREFIX 0x08
#define SEEN_BOGUS_UNIX_FROM 010
#define SEEN_PREFIX 020

/* First lines of body can have From:, Date:, and Subject: */
static void handle_inbody_header(int *seen, char *line)
{
if (!memcmp(">From", line, 5) && isspace(line[5])) {
if (!(*seen & SEEN_BOGUS_UNIX_FROM)) {
*seen |= SEEN_BOGUS_UNIX_FROM;
return;
}
}
if (!memcmp("From:", line, 5) && isspace(line[5])) {
if (!(*seen & SEEN_FROM) && handle_from(line+6)) {
*seen |= SEEN_FROM;
Expand Down

0 comments on commit d177e58

Please sign in to comment.