set name of daemon stdout
This commit is contained in:
parent
31f59338d3
commit
add841d552
|
@ -120,7 +120,7 @@ void fork(const std::string & pidfile)
|
||||||
if (!tmpdir)
|
if (!tmpdir)
|
||||||
tmpdir = TMPDIR;
|
tmpdir = TMPDIR;
|
||||||
std::string output = tmpdir;
|
std::string output = tmpdir;
|
||||||
output += "/bitmonero.daemon.stdout.stderr";
|
output += "/wownero.daemon.stdout.stderr";
|
||||||
const int flags = O_WRONLY | O_CREAT | O_APPEND;
|
const int flags = O_WRONLY | O_CREAT | O_APPEND;
|
||||||
const mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
const mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
||||||
if (open(output.c_str(), flags, mode) < 0)
|
if (open(output.c_str(), flags, mode) < 0)
|
||||||
|
|
Loading…
Reference in New Issue