mirror of https://github.com/BOINC/boinc.git
- scheduler: update host.n_bwdown
(this was omitted for some reason). From Kevin Reed. svn path=/trunk/boinc/; revision=13431
This commit is contained in:
parent
c99833a7c9
commit
db08d30fee
|
@ -8049,3 +8049,11 @@ David 21 Aug 2007
|
|||
db_purge.C
|
||||
handle_request.C
|
||||
sched_send.C
|
||||
|
||||
David 21 Aug 2007
|
||||
- scheduler: update host.n_bwdown
|
||||
(this was omitted for some reason).
|
||||
From Kevin Reed.
|
||||
|
||||
db/
|
||||
boinc_db.C
|
||||
|
|
|
@ -578,6 +578,10 @@ int DB_HOST::update_diff(HOST& h) {
|
|||
sprintf(buf, " d_boinc_max=%f,", d_boinc_max);
|
||||
strcat(updates, buf);
|
||||
}
|
||||
if (n_bwdown != h.n_bwdown) {
|
||||
sprintf(buf, " n_bwdown=%f,", n_bwdown);
|
||||
strcat(updates, buf);
|
||||
}
|
||||
if (n_bwup != h.n_bwup) {
|
||||
sprintf(buf, " n_bwup=%f,", n_bwup);
|
||||
strcat(updates, buf);
|
||||
|
|
Loading…
Reference in New Issue