bug 287618 case shouldn't matter for default pref files, r=bsmedberg,sr=darin,a=asa

This commit is contained in:
dveditz%cruzio.com 2005-05-14 00:30:08 +00:00
Родитель 52a9476591
Коммит b726ed1415
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -642,7 +642,8 @@ pref_LoadPrefsInDir(nsIFile* aDir, char const *const *aSpecialFiles, PRUint32 aS
NS_ASSERTION(!leafName.IsEmpty(), "Failure in default prefs: directory enumerator returned empty file?");
// Skip non-js files
if (StringEndsWith(leafName, NS_LITERAL_CSTRING(".js"))) {
if (StringEndsWith(leafName, NS_LITERAL_CSTRING(".js"),
nsCaseInsensitiveCStringComparator())) {
PRBool shouldParse = PR_TRUE;
// separate out special files
for (PRUint32 i = 0; i < aSpecialFilesCount; ++i) {