mirror of https://github.com/BOINC/boinc.git
BOINC GAHP: append to an existing stderr file instead of overwriting it
This commit is contained in:
parent
f88c65125b
commit
b4a0807c40
|
@ -459,7 +459,7 @@ void handle_fetch_output(COMMAND& c) {
|
|||
} else {
|
||||
sprintf(path, "%s/%s", req.dir, req.stderr_filename.c_str());
|
||||
}
|
||||
FILE* f = fopen(path, "w");
|
||||
FILE* f = fopen(path, "a");
|
||||
if (!f) {
|
||||
sprintf(buf, "can't\\ open\\ stderr\\ output\\ file\\ %s ", path);
|
||||
s = string(buf);
|
||||
|
|
Loading…
Reference in New Issue