mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5415
This commit is contained in:
parent
894d38b05e
commit
20f7b5bbf6
|
@ -24641,3 +24641,8 @@ Janus 12 Feb 2005
|
|||
forum_moderate_thread_action.php (new)
|
||||
forum_thread.php
|
||||
|
||||
David 12 Feb 2005
|
||||
- fix to the 11/feb fix
|
||||
|
||||
client/
|
||||
http.C
|
||||
|
|
|
@ -322,7 +322,7 @@ static int read_reply(int socket, char* buf, int len) {
|
|||
i=0;
|
||||
while (i<len-1) {
|
||||
n = recv(socket, buf+i, 1, 0);
|
||||
if (n==1 && maybe_more_data()) {
|
||||
if (n==-1 && maybe_more_data()) {
|
||||
boinc_sleep(0.1);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue