bugfix in NetReadRead M.Z.

This commit is contained in:
cvs
2004-08-16 07:56:10 +00:00
parent d2661c83ed
commit b83c6a7df8

View File

@ -241,7 +241,6 @@ extern VerifyChannel(mkChannel *self); /* defined in network.c */
{
return 1;
}
/* iRet is now the number of bytes read. Now we check for command
interrupts */
pPtr = strstr(pBuffer,"INT1712");
@ -327,7 +326,7 @@ extern VerifyChannel(mkChannel *self); /* defined in network.c */
}
}
/* when we are here we may still have an incomplete command pending */
if(pEnd != pPtr && strlen(pEnd) > 0)
if(pEnd != pPtr && strlen(pPtr) > 0)
{
strcpy(pItem->pHold,pPtr);
}