*** empty log message ***

svn path=/trunk/boinc/; revision=1149
This commit is contained in:
David Anderson 2003-04-29 22:59:41 +00:00
parent d30684dbd4
commit c0f7cbe14b
1 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ int authenticate_user(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
);
strcpy(reply.message_priority, "low");
reply.request_delay = 120;
sprintf(buf, "Bad authenticator: %s\n", sreq.authenticator);
sprintf(buf, "Bad authenticator [%s]\n", sreq.authenticator);
write_log(buf);
return -1;
}
@ -221,7 +221,7 @@ int authenticate_user(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
);
strcpy(reply.message_priority, "low");
reply.request_delay = 120;
sprintf(buf, "Bad authenticator: %s\n", sreq.authenticator);
sprintf(buf, "Bad authenticator [%s]\n", sreq.authenticator);
write_log(buf);
return -1;
}
@ -625,7 +625,7 @@ void process_request(
//
platform = ss.lookup_platform(sreq.platform_name);
if (!platform) {
sprintf(buf, "platform %s not found", sreq.platform_name);
sprintf(buf, "platform [%s] not found\n", sreq.platform_name);
strcpy(reply.message, buf);
strcpy(reply.message_priority, "low");
write_log(buf);