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