Fix for bug 97256. Don't be case sensitive when checking for a RFC822 header!

Patch provided by Denis Antrushin <adu@sparc.spb.su>. R=ducarroz, SR=sspitzer


git-svn-id: svn://10.0.0.236/trunk@102338 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ducarroz%netscape.com
2001-09-05 23:04:55 +00:00
parent b8eeb24c68
commit cfde140b23

View File

@@ -416,7 +416,7 @@ HG09091
obj->options &&
obj->options->decompose_file_p &&
ct )
obj->options->is_multipart_msg = PL_strstr(ct, "multipart/") != NULL;
obj->options->is_multipart_msg = PL_strcasestr(ct, "multipart/") != NULL;
#endif /* MIME_DRAFTS */