*** empty log message ***

svn path=/trunk/boinc/; revision=1439
This commit is contained in:
Karl Chen 2003-06-14 20:06:26 +00:00
parent f0ae670976
commit 3b2322f117
1 changed files with 4 additions and 2 deletions

View File

@ -152,13 +152,15 @@ int check_pair(RESULT& r1, RESULT& r2, bool& match) {
get_output_file_path(r1, path);
retval = read_file_malloc(path, p1);
if (retval) {
log_messages.printf(SchedMessages::CRITICAL, "read_file_malloc %s %d\n", path, retval);
log_messages.printf(SchedMessages::CRITICAL, "[RESULT#%d %s] [RESULT#%d %s] Couldn't open %s (r1: read_file_malloc()=%d)\n",
r1.id, r1.name, r2.id, r2.name, path, retval);
return retval;
}
get_output_file_path(r2, path);
retval = read_file_malloc(path, p2);
if (retval) {
log_messages.printf(SchedMessages::CRITICAL, "read_file_malloc %s %d\n", path, retval);
log_messages.printf(SchedMessages::CRITICAL, "[RESULT#%d %s] [RESULT#%d %s] Couldn't open %s (r2: read_file_malloc()=%d)\n",
r1.id, r1.name, r2.id, r2.name, path, retval);
return retval;
}
match = !strcmp(p1, p2);