mshtml: Do a case-insensitive compare of type.

This commit is contained in:
Alistair Leslie-Hughes 2008-11-13 21:38:13 +11:00 committed by Alexandre Julliard
parent 7fb434838c
commit 87ce5275bb
1 changed files with 1 additions and 1 deletions

View File

@ -640,7 +640,7 @@ static BOOL get_guid_from_type(LPCWSTR type, GUID *guid)
{'t','e','x','t','/','j','a','v','a','s','c','r','i','p','t',0};
/* FIXME: Handle more types */
if(!strcmpW(type, text_javascriptW)) {
if(!strcmpiW(type, text_javascriptW)) {
*guid = CLSID_JScript;
}else {
FIXME("Unknown type %s\n", debugstr_w(type));