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

This commit is contained in:
av%netscape.com 2001-12-28 23:55:57 +00:00
parent 63df0803f1
commit dad82dde26

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;
}