*** empty log message ***

svn path=/trunk/boinc/; revision=3916
This commit is contained in:
Karl Chen 2004-07-21 20:05:09 +00:00
parent 9134c0df11
commit da3131e40d
3 changed files with 9 additions and 2 deletions

View File

@ -15480,3 +15480,10 @@ Rom July 19 2004
client/
cs_benchmark.C
Karl 2004-07-21
- fix bug in "couldn't find app" messages
sched/
message_handler.C
validator.C

View File

@ -98,7 +98,7 @@ int main_loop(bool one_pass) {
sprintf(buf, "where name='%s'", app_name);
retval = app.lookup(buf);
if (retval) {
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "can't find app %s\n", app.name);
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "can't find app %s\n", app_name);
exit(1);
}
*/

View File

@ -393,7 +393,7 @@ int main_loop(bool one_pass) {
sprintf(buf, "where name='%s'", app_name);
retval = app.lookup(buf);
if (retval) {
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "can't find app %s\n", app.name);
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "can't find app %s\n", app_name);
exit(1);
}