From 2d0b6406a28dbad63c40e689d146fd1e86671921 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Thu, 8 Sep 2005 21:07:28 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=7930 --- checkin_notes | 6 ++++++ client/client_state.C | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 0ae9d9802c..f6786d4999 100755 --- a/checkin_notes +++ b/checkin_notes @@ -11522,3 +11522,9 @@ David 8 Sept 2005 html/user/ edit_password_action.php + +Rom 8 Sept 2005 + - Fix a file/rpc transfer issue (From Carl) + + client/ + client_state.C diff --git a/client/client_state.C b/client/client_state.C index 56e5b88dee..2beb6280b2 100644 --- a/client/client_state.C +++ b/client/client_state.C @@ -402,9 +402,9 @@ void CLIENT_STATE::do_io_or_sleep(double x) { &tv ); //printf("select in %d out %d\n", all_fds.max_fd, n); - if (n==0) break; net_xfers->got_select(all_fds, x); gui_rpcs.got_select(all_fds); + if (n==0) break; now = dtime(); if (now > end_time) break;