fixes bug 280731 "nsIProtocolProxyService::NewProxyInfo is broken" r+sr=bzbarsky

This commit is contained in:
darin%meer.net 2005-02-02 06:34:29 +00:00
Родитель 5979ff01a3
Коммит 55c40d1dc2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -855,7 +855,7 @@ nsProtocolProxyService::NewProxyInfo(const nsACString &aType,
// proxy info instance. we just reference the string literals directly :)
const char *type = nsnull;
for (PRUint32 i=0; i<NS_ARRAY_LENGTH(types); ++i) {
if (aType.LowerCaseEqualsASCII(types[i]) == 0) {
if (aType.LowerCaseEqualsASCII(types[i])) {
type = types[i];
break;
}