summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2002-05-21 17:50:21 +0000
committerKevin Steves <stevesk@pobox.com>2002-05-21 17:50:21 +0000
commitc5041acef392b489d11cbb1793f72f01acc229b8 (patch)
treeaa81e32d6331a715bc181ce47c63fc4f6fa30e46 /sshd.c
parent9de793cc6c83a2e116dd73530bb4020e4b40d9d5 (diff)
- (stevesk) [sshd.c] bug 245; disable setsid() for now
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index 45ccb3d47..82520b8b0 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1336,8 +1336,11 @@ main(int ac, char **av)
1336 * setlogin() affects the entire process group. We don't 1336 * setlogin() affects the entire process group. We don't
1337 * want the child to be able to affect the parent. 1337 * want the child to be able to affect the parent.
1338 */ 1338 */
1339#if 0
1340 /* XXX: this breaks Solaris */
1339 if (setsid() < 0) 1341 if (setsid() < 0)
1340 error("setsid: %.100s", strerror(errno)); 1342 error("setsid: %.100s", strerror(errno));
1343#endif
1341 1344
1342 /* 1345 /*
1343 * Disable the key regeneration alarm. We will not regenerate the 1346 * Disable the key regeneration alarm. We will not regenerate the