Revert "Fixed a bug with the MIME analyzer not removing whitespace on wrapped headers."

This reverts commit 89cb103a2c.
This commit is contained in:
Robin Sommer 2012-06-06 12:21:24 -07:00
parent f0db2db914
commit 9a86a5e21f

View file

@ -426,8 +426,7 @@ void MIME_Entity::ContHeader(int len, const char* data)
return;
}
int ws = MIME_count_leading_lws(len, data);
current_header_line->append(len - ws, data + ws);
current_header_line->append(len, data);
}
void MIME_Entity::FinishHeader()