back out this nsCRT::strlen to strlen change, look for better solution later

This commit is contained in:
cathleen%netscape.com 2002-02-19 17:27:11 +00:00
parent a6a1655268
commit 3322069fa7

View File

@ -288,7 +288,7 @@ nsHttpAuthNode::GetAuthEntryForPath(const char *path,
break;
}
}
else if (!nsCRT::strncmp(path, entry->Path(), strlen(entry->Path()))) {
else if (!nsCRT::strncmp(path, entry->Path(), nsCRT::strlen(entry->Path()))) {
*result = entry;
break;
}