*** empty log message ***

svn path=/trunk/boinc/; revision=1414
This commit is contained in:
Karl Chen 2003-06-12 07:07:04 +00:00
parent d66f7b81e6
commit a745fdaa45
2 changed files with 4 additions and 4 deletions

View File

@ -41,10 +41,10 @@ boinc_client_SOURCES = \
boinc_client_DEPENDENCIES = $(LIBRSA)
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_CFLAGS = -O6
speed_stats_CFLAGS = -O6 $(AM_CFLAGS)
all-local: @CLIENT_BIN_FILENAME@

View File

@ -455,14 +455,14 @@ int handle_results(
//
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);
strncpy(result.name, rp->name, sizeof(result.name));
sprintf(buf, "where name='%s'", result.name);
retval = result.lookup(buf);
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);
continue;
}