replace bad filename hashing function

svn path=/trunk/boinc/; revision=5028
This commit is contained in:
David Anderson 2005-01-08 06:38:21 +00:00
parent 8a2f70a863
commit 4031091deb
2 changed files with 7 additions and 1 deletions

View File

@ -22274,3 +22274,9 @@ Rom 7 Jan 2005
client/win/
win_screensaver.cpp
David 7 Jan 2005
- off-by-1 error caused trivial validator to not work
sched/
validate_util.C

View File

@ -173,7 +173,7 @@ int generic_check_set(
matches[j] = true;
}
}
if (neq > min_valid) {
if (neq >= min_valid) {
// set validate state for each result
for (j = 0; j != n; ++j) {
results[j].validate_state = matches[j] ? VALIDATE_STATE_VALID : VALIDATE_STATE_INVALID;