On 17-11-14 23:14, David Sommerseth wrote:
> If down-root fails it will now use warn() to provide some more information
> about what went wrong, by retrieving the error message via errno.
Here too a small nitpick from the compiler (forgot to include err.h),
but otherwise ACK.
down-root.c:164:4: warning: implicit declaration of function 'warn'
is invalid in C99 [-Wimplicit-function-declaration]
warn ("DOWN-ROOT: daemonization failed");
^
down-root.c:239:5: warning: implicit declaration of function 'err' is
invalid in C99 [-Wimplicit-function-declaration]
err(127, "DOWN-ROOT: Failed execute: %s", argv[0]);
^
-Steffan