mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1414
This commit is contained in:
parent
d66f7b81e6
commit
a745fdaa45
|
@ -41,10 +41,10 @@ boinc_client_SOURCES = \
|
||||||
|
|
||||||
boinc_client_DEPENDENCIES = $(LIBRSA)
|
boinc_client_DEPENDENCIES = $(LIBRSA)
|
||||||
boinc_client_LDADD = $(RSA_LIBS)
|
boinc_client_LDADD = $(RSA_LIBS)
|
||||||
boinc_client_CPPFLAGS = -I $(srcdir)/win
|
boinc_client_CPPFLAGS = -I $(srcdir)/win $(AM_CPPFLAGS)
|
||||||
|
|
||||||
speed_stats_SOURCES = speed_stats.C
|
speed_stats_SOURCES = speed_stats.C
|
||||||
speed_stats_CFLAGS = -O6
|
speed_stats_CFLAGS = -O6 $(AM_CFLAGS)
|
||||||
|
|
||||||
all-local: @CLIENT_BIN_FILENAME@
|
all-local: @CLIENT_BIN_FILENAME@
|
||||||
|
|
||||||
|
|
|
@ -455,14 +455,14 @@ int handle_results(
|
||||||
//
|
//
|
||||||
reply.result_acks.push_back(*rp);
|
reply.result_acks.push_back(*rp);
|
||||||
|
|
||||||
log_messages.printf(SchedMessages::DEBUG, "[HOST#%d] [%s] got result\n",
|
log_messages.printf(SchedMessages::NORMAL, "[HOST#%d] [RESULT#? %s] got result\n",
|
||||||
host.id, rp->name);
|
host.id, rp->name);
|
||||||
|
|
||||||
strncpy(result.name, rp->name, sizeof(result.name));
|
strncpy(result.name, rp->name, sizeof(result.name));
|
||||||
sprintf(buf, "where name='%s'", result.name);
|
sprintf(buf, "where name='%s'", result.name);
|
||||||
retval = result.lookup(buf);
|
retval = result.lookup(buf);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
log_messages.printf(SchedMessages::CRITICAL, "[HOST#%d] [%s] can't find result\n",
|
log_messages.printf(SchedMessages::CRITICAL, "[HOST#%d] [RESULT#? %s] can't find result\n",
|
||||||
host.id, rp->name);
|
host.id, rp->name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue