changed read_socket's read usage to recv
This commit is contained in:
parent
7a450a19c4
commit
769bed7b18
@ -75,7 +75,7 @@ char *read_socket(int socket)
|
|||||||
content = why2_calloc(content_size + 1, sizeof(char));
|
content = why2_calloc(content_size + 1, sizeof(char));
|
||||||
|
|
||||||
//READ
|
//READ
|
||||||
if (read(socket, content, content_size) != content_size) why2_die("Reading socket failed!");
|
if (recv(socket, content, content_size, 0) != content_size) why2_die("Reading socket failed!");
|
||||||
|
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user