additional fix for 241203 do case-insensitive search for multipart/mixed when determining if a message has an attachment, sr=mscott
git-svn-id: svn://10.0.0.236/trunk@164488 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1402,7 +1402,7 @@ int nsParseMailMessageState::FinalizeHeaders()
|
||||
}
|
||||
}
|
||||
}
|
||||
substring = PL_strstr(content_type->value, "multipart/mixed");
|
||||
substring = PL_strcasestr(content_type->value, "multipart/mixed");
|
||||
if (substring)
|
||||
{
|
||||
PRUint32 newFlags;
|
||||
|
||||
Reference in New Issue
Block a user