From 114621ca1b0a02f6cb12cf29c5f700da79c57a8d Mon Sep 17 00:00:00 2001 From: Sebastien Estienne Date: Fri, 28 Oct 2005 23:55:00 +0000 Subject: fixes needed for windows and solaris git-svn-id: file:///home/lennart/svn/public/libdaemon/trunk@94 153bfa13-eec0-0310-be40-b0cb6a0e1b4b --- libdaemon/dfork.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdaemon/dfork.c') diff --git a/libdaemon/dfork.c b/libdaemon/dfork.c index 263c6f5..19e02a0 100644 --- a/libdaemon/dfork.c +++ b/libdaemon/dfork.c @@ -210,12 +210,12 @@ pid_t daemon_fork(void) { setsid(); setpgid(0,0); - +#ifdef TIOCNOTTY if ((tty_fd = open("/dev/tty", O_RDWR)) >= 0) { ioctl(tty_fd, TIOCNOTTY, NULL); close(tty_fd); } - +#endif dpid = getpid(); if (atomic_write(pipe_fds[1], &dpid, sizeof(dpid)) != sizeof(dpid)) goto fail; -- cgit