Pass the prefs filename to PREF_EvaluateConfigScript() so that it will appear in the message displayed if there is an error in the file. Bug 196763, r=ccarlen, sr=jag.

This commit is contained in:
smontagu%netscape.com 2003-03-12 00:39:31 +00:00
Родитель 3e2ee83b87
Коммит 2e2ff31303
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -468,7 +468,9 @@ static nsresult openPrefFile(nsIFile* aFile, PRBool aIsErrorFatal,
}
#endif
if (NS_SUCCEEDED(rv)) {
if (PREF_EvaluateConfigScript(readBuf, amtRead, nsnull, aIsGlobalContext, PR_TRUE,
nsCAutoString leafName;
aFile->GetNativeLeafName(leafName);
if (PREF_EvaluateConfigScript(readBuf, amtRead, leafName.get(), aIsGlobalContext, PR_TRUE,
aSkipFirstLine))
gErrorOpeningUserPrefs = PR_FALSE;
else