mirror of https://github.com/BOINC/boinc.git
- scheduler: handling of allow_multiple_clients flag from client
was wrong. From Bernd. svn path=/trunk/boinc/; revision=25579
This commit is contained in:
parent
8208a3b72f
commit
66b20e1138
|
@ -3340,3 +3340,10 @@ David 17 Apr 2012
|
|||
|
||||
sched/
|
||||
target_batch.cpp
|
||||
|
||||
David 17 Apr 2012
|
||||
- scheduler: handling of allow_multiple_clients flag from client
|
||||
was wrong. From Bernd.
|
||||
|
||||
sched/
|
||||
handle_request.cpp
|
||||
|
|
|
@ -409,7 +409,7 @@ make_new_host:
|
|||
//
|
||||
// NOTE: If the client was run with --allow_multiple_clients, skip this.
|
||||
//
|
||||
if ((g_request->allow_multiple_clients==1)
|
||||
if ((g_request->allow_multiple_clients != 1)
|
||||
&& find_host_by_other(user, g_request->host, host)
|
||||
) {
|
||||
log_messages.printf(MSG_NORMAL,
|
||||
|
|
Loading…
Reference in New Issue