*** empty log message ***

svn path=/trunk/boinc/; revision=4327
This commit is contained in:
David Anderson 2004-10-14 02:18:06 +00:00
parent 5cb8ae36b4
commit 4fe1dab9bb
2 changed files with 7 additions and 1 deletions

View File

@ -18363,3 +18363,9 @@ David 13 Oct 2004
x_opengl.C,h
apps/
Makefile.am
David 13 Oct 2004
- upload handler: return error msg to client if can't open log file
sched/
file_upload_handler.C

View File

@ -449,6 +449,7 @@ int main() {
get_log_path(log_path);
if (!freopen(log_path, "a", stderr)) {
fprintf(stderr, "Can't open log file\n");
return_error(ERR_TRANSIENT, "can't open log file");
exit(1);
}
@ -456,7 +457,6 @@ int main() {
retval = config.parse_file("..");
if (retval) {
return_error(ERR_TRANSIENT, "can't read config file");
exit(1);
}