mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1439
This commit is contained in:
parent
f0ae670976
commit
3b2322f117
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue