oops that was win32

This commit is contained in:
David Anderson 2005-08-02 10:18:09 +00:00
parent 7eaa8a1a39
commit f5fe076ec1

View File

@ -149,10 +149,10 @@ static cell AMX_NATIVE_CALL socket_recv(AMX *amx, cell *params) /* 2 param */
memset(tmpchar, 0, length);
// Now we recieve
tmp = recv(socket, tmpchar, length-1, 0);
if (tmp == SOCKET_ERROR)
if (tmp == -1)
{
delete [] tmpchar;
return SOCKET_ERROR;
return -1;
}
// And put a copy of our recieved data into amx's string
tmpchar[tmp]='\0';