Tester plugin -- correcting the length of the data buffer, not part of the build

git-svn-id: svn://10.0.0.236/trunk@111142 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
av%netscape.com
2001-12-28 23:55:57 +00:00
parent f9ec78ef23
commit e9554ebd15

View File

@@ -931,6 +931,6 @@ int formatLogItem(LogItemStruct * plis, LPSTR szOutput, LPSTR szEndOfItem, BOOL
strcat(szOutput, szString);
strcat(szOutput, szTime);
strcat(szOutput, szEOI);
iRet = strlen(szString) + strlen(szRet) + strlen(szTime) + strlen(szEOI) + 1;
iRet = strlen(szString) + strlen(szTime) + strlen(szEOI);
return iRet;
}