*** empty log message ***

svn path=/trunk/boinc/; revision=498
This commit is contained in:
David Anderson 2002-10-15 07:41:33 +00:00
parent fcd410b3b5
commit c5c51962b2
1 changed files with 5 additions and 1 deletions

View File

@ -148,6 +148,7 @@ int authenticate_user(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
"Visit this project's web site to get an authenticator."
);
strcpy(reply.message_priority, "low");
reply.request_delay = 120;
return -1;
}
@ -167,8 +168,11 @@ int authenticate_user(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
);
retval = db_user_lookup_auth(reply.user);
if (retval) {
strcpy(reply.message, "Invalid or missing authenticator");
strcpy(reply.message,
"Invalid or missing authenticator. "
"Visit this project's web site to get an authenticator.");
strcpy(reply.message_priority, "low");
reply.request_delay = 120;
return -1;
}
new_host: