*** empty log message ***

svn path=/trunk/boinc/; revision=5415
This commit is contained in:
David Anderson 2005-02-12 21:57:50 +00:00
parent 894d38b05e
commit 20f7b5bbf6
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

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