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