From c5041acef392b489d11cbb1793f72f01acc229b8 Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Tue, 21 May 2002 17:50:21 +0000 Subject: - (stevesk) [sshd.c] bug 245; disable setsid() for now --- sshd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sshd.c') diff --git a/sshd.c b/sshd.c index 45ccb3d4..82520b8b 100644 --- a/sshd.c +++ b/sshd.c @@ -1336,8 +1336,11 @@ main(int ac, char **av) * setlogin() affects the entire process group. We don't * want the child to be able to affect the parent. */ +#if 0 + /* XXX: this breaks Solaris */ if (setsid() < 0) error("setsid: %.100s", strerror(errno)); +#endif /* * Disable the key regeneration alarm. We will not regenerate the -- cgit v1.2.3