fix build bustage, due to nsCRT::strlen(char* s) removed

This commit is contained in:
cathleen%netscape.com 2002-02-28 05:00:18 +00:00
Родитель 5468d9b6ff
Коммит b4b6e3703b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -667,7 +667,7 @@ static void myPLstrncpy(Str255 dst, const char* src, int inMax)
static const char* TruncNodeName(const char *aNode, char *outBuf)
{
PRUint32 nodeLen;
if ((nodeLen = nsCRT::strlen(aNode)) > 31)
if ((nodeLen = strlen(aNode)) > 31)
{
static PRBool sInitialized = PR_FALSE;
static CharByteTable sTable;