Compare commits

..

No commits in common. "b1b9fdc2d817ea4b2161078a5289b7b0d7e56d54" and "71edc766e750589df37d6c3c8a669cbb584b039e" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -503,7 +503,7 @@ The
.Sy optional
flag should only be omitted if a local daemon is critical and the boot should
fail if the daemon fails.
.Ss Creating a new daemon
.Ss Creating a new virtual daemon
The
.Sy exampled
daemon, which depends on the

View File

@ -102,7 +102,7 @@ static void ready(void) {
if ( !readyfd_env )
return;
int readyfd = atoi(readyfd_env);
char c = '\\n';
char c = '\n';
write(readyfd, &c, 1);
close(readyfd);
unsetenv("READYFD");