From 7b49c16761b4a11f1f0846cd46bd7194392efbfa Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Wed, 29 Feb 2012 22:12:16 +0200 Subject: build: move daemon() emulation into compat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alon Bar-Lev Acked-by: Samuli Seppänen Acked-by: David Sommerseth Signed-off-by: David Sommerseth --- src/openvpn/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/openvpn/init.c') diff --git a/src/openvpn/init.c b/src/openvpn/init.c index e7edb05..bba3cf8 100644 --- a/src/openvpn/init.c +++ b/src/openvpn/init.c @@ -993,7 +993,7 @@ possibly_become_daemon (const struct options *options, const bool first_time) { ASSERT (!options->inetd); if (daemon (options->cd_dir != NULL, options->log) < 0) - msg (M_ERR, "daemon() failed"); + msg (M_ERR, "daemon() failed or unsupported"); restore_signal_state (); if (options->log) set_std_files_to_null (true); -- cgit