Rename daemon() to start_daemon().
daemon() conflicted with the standard library function, which is included by default on OS X.
This commit is contained in:
parent
05b8759305
commit
720d587422
12 changed files with 25 additions and 25 deletions
|
|
@ -243,15 +243,15 @@ char **envp;
|
|||
|
||||
/* Start up daemons and fuses */
|
||||
|
||||
daemon(status, TRUE, BEFORE);
|
||||
daemon(runners, TRUE, AFTER);
|
||||
start_daemon(status, TRUE, BEFORE);
|
||||
start_daemon(runners, TRUE, AFTER);
|
||||
/*
|
||||
* These daemons have been moved to AFTER because BEFORE daemons
|
||||
* get called every command, even invalid ones. Hopefully this
|
||||
* won't break anything.
|
||||
*/
|
||||
daemon(doctor, TRUE, AFTER);
|
||||
daemon(stomach, TRUE, AFTER);
|
||||
start_daemon(doctor, TRUE, AFTER);
|
||||
start_daemon(stomach, TRUE, AFTER);
|
||||
fuse(swander, TRUE, WANDERTIME);
|
||||
|
||||
/* Give the rogue his weaponry */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue