This commit is contained in:
rickg%netscape.com 1999-03-31 07:44:35 +00:00
Родитель 41c4c9a227
Коммит 30fc451f52
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -330,7 +330,7 @@ nsITokenizer* CWellFormedDTD::GetTokenizer(void) {
#ifndef XP_MAC
char* theEnvString = PR_GetEnv("EXPAT");
if(theEnvString){
if(('1'==theEnvString[0]) || ('Y'==toupper(theEnvString[0]))) {
if(('1'==theEnvString[0]) || ('Y'==theEnvString[0]) || ('y'==theEnvString[0])) {
theExpatState=PR_TRUE; //this indicates that the EXPAT flag was found in the environment.
}
}

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

@ -330,7 +330,7 @@ nsITokenizer* CWellFormedDTD::GetTokenizer(void) {
#ifndef XP_MAC
char* theEnvString = PR_GetEnv("EXPAT");
if(theEnvString){
if(('1'==theEnvString[0]) || ('Y'==toupper(theEnvString[0]))) {
if(('1'==theEnvString[0]) || ('Y'==theEnvString[0]) || ('y'==theEnvString[0])) {
theExpatState=PR_TRUE; //this indicates that the EXPAT flag was found in the environment.
}
}