Skip to content
Snippets Groups Projects
Commit 5d07baf3 authored by Peter Bortas's avatar Peter Bortas
Browse files

Don't suggest writing files in /.

parent 6a0a4b43
No related branches found
No related tags found
No related merge requests found
...@@ -1190,7 +1190,7 @@ void daemon(int nochdir, int noclose, ...@@ -1190,7 +1190,7 @@ void daemon(int nochdir, int noclose,
//! //!
//! /* Do not change working directory. Write stdout to a file called //! /* Do not change working directory. Write stdout to a file called
//! access.log and stderr to error.log. */ //! access.log and stderr to error.log. */
//! Process.daemon(1, 0, ([ "stdout": "access.log", "stderr": "error.log" ]) ); //! Process.daemon(1, 0, ([ "stdout": "/var/log/access.log", "stderr": "/var/log/error.log" ]) );
{ {
array(Stdio.File) opened = ({}); array(Stdio.File) opened = ({});
Stdio.File getfd(string|object f) Stdio.File getfd(string|object f)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment