*** empty log message ***

svn path=/trunk/boinc/; revision=2509
This commit is contained in:
Karl Chen 2003-10-19 04:00:48 +00:00
parent 379224bb2f
commit d4b762687e
2 changed files with 8 additions and 6 deletions

View File

@ -877,8 +877,8 @@ void send_code_sign_key(
retval = read_file_malloc(path, oldkey); retval = read_file_malloc(path, oldkey);
if (retval) { if (retval) {
strcpy(reply.message, strcpy(reply.message,
"Can't update code signing key. " "Can't update code signing key. "
"Please report this to project." "Please report this to the project administrators."
); );
return; return;
} }
@ -887,8 +887,8 @@ void send_code_sign_key(
retval = read_file_malloc(path, signature); retval = read_file_malloc(path, signature);
if (retval) { if (retval) {
strcpy(reply.message, strcpy(reply.message,
"Can't update code signing key. " "Can't update code signing key. "
"Please report this to the project administrators." "Please report this to the project administrators."
); );
} else { } else {
safe_strcpy(reply.code_sign_key, code_sign_key); safe_strcpy(reply.code_sign_key, code_sign_key);

View File

@ -240,8 +240,10 @@ end:
// Redirect them to the project home page. // Redirect them to the project home page.
fprintf(fout, fprintf(fout,
"<META HTTP-EQUIV=Refresh CONTENT=\"0;URL=%s\">\n", "<HTML><HEAD><META HTTP-EQUIV=Refresh CONTENT=\"0;URL=%s\"></HEAD><BODY>\n\n"
"../"); "You seem to be viewing this page in a WWW browser. Visit the <a href=\"%s\">main page</a>.\n\n"
"</BODY></HTML>\n",
"../", "../");
} }
return 0; return 0;
} }