diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sshd.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20020521 | ||
2 | - (stevesk) [sshd.c] bug 245; disable setsid() for now | ||
3 | |||
1 | 20020517 | 4 | 20020517 |
2 | - (tim) [configure.ac] remove extra MD5_MSG="no" line. | 5 | - (tim) [configure.ac] remove extra MD5_MSG="no" line. |
3 | 6 | ||
@@ -656,4 +659,4 @@ | |||
656 | - (stevesk) entropy.c: typo in debug message | 659 | - (stevesk) entropy.c: typo in debug message |
657 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 660 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
658 | 661 | ||
659 | $Id: ChangeLog,v 1.2135 2002/05/17 15:59:22 tim Exp $ | 662 | $Id: ChangeLog,v 1.2136 2002/05/21 17:50:21 stevesk Exp $ |
@@ -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 |