From 93b0787a050dace01353e24f1942dc6b0bb4df24 Mon Sep 17 00:00:00 2001 From: darkk Date: Fri, 21 Sep 2007 15:55:48 +0000 Subject: [PATCH] Disable daemon() while we have no proper logging support. --- base.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base.c b/base.c index 1cf3335..f2c8ee8 100644 --- a/base.c +++ b/base.c @@ -317,10 +317,12 @@ static int base_init() } } +#if 0 if (daemon(0, 0) < 0) { log_errno("daemon()"); goto fail; } +#endif return 0; fail: if (instance.redirector->fini)