Typo killed feeder with bad MySQL syntax. David, please check.

svn path=/trunk/boinc/; revision=4784
This commit is contained in:
Bruce Allen 2004-12-07 23:54:07 +00:00
parent 1c2350d39f
commit 8fe62528b7
2 changed files with 4 additions and 2 deletions

View File

@ -20847,9 +20847,11 @@ Bruce 7 Dec 2004
compression options are 'efficient' in that they do not write an uncompressed compression options are 'efficient' in that they do not write an uncompressed
file then compress -- they go straight to compressed. SIGHUP and lockfile file then compress -- they go straight to compressed. SIGHUP and lockfile
shutdown signals are properly caught and close compressed files and DB cleanly. shutdown signals are properly caught and close compressed files and DB cleanly.
- Typo killed feeder with bad MySQL syntax
sched/ sched/
db_purge.C db_purge.C
feeder.C
Rom 7 Dec 2004 Rom 7 Dec 2004
- Checkin changes suggested by Bruce Allen and Bernd Machenschalk related to - Checkin changes suggested by Bruce Allen and Bernd Machenschalk related to

View File

@ -375,9 +375,9 @@ int main(int argc, char** argv) {
} else if (!strcmp(argv[i], "-d")) { } else if (!strcmp(argv[i], "-d")) {
log_messages.set_debug_level(atoi(argv[++i])); log_messages.set_debug_level(atoi(argv[++i]));
} else if (!strcmp(argv[i], "-random_order")) { } else if (!strcmp(argv[i], "-random_order")) {
order_clause = "order by random"; order_clause = "order by random ";
} else if (!strcmp(argv[i], "-priority_order")) { } else if (!strcmp(argv[i], "-priority_order")) {
order_clause = "order by priority desc"; order_clause = "order by priority desc ";
} }
} }