diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sshd.c | 4 |
2 files changed, 2 insertions, 5 deletions
@@ -1,5 +1,6 @@ | |||
1 | 20010918 | 1 | 20010918 |
2 | - (djm) Configure support for smartcards | 2 | - (djm) Configure support for smartcards |
3 | - (djm) Revert setgroups call, it causes problems on OS-X | ||
3 | 4 | ||
4 | 20010917 | 5 | 20010917 |
5 | - (djm) x11-ssh-askpass-1.2.4 in RPM spec, revert workarounds | 6 | - (djm) x11-ssh-askpass-1.2.4 in RPM spec, revert workarounds |
@@ -6460,4 +6461,4 @@ | |||
6460 | - Wrote replacements for strlcpy and mkdtemp | 6461 | - Wrote replacements for strlcpy and mkdtemp |
6461 | - Released 1.0pre1 | 6462 | - Released 1.0pre1 |
6462 | 6463 | ||
6463 | $Id: ChangeLog,v 1.1525 2001/09/18 04:01:11 djm Exp $ | 6464 | $Id: ChangeLog,v 1.1526 2001/09/18 04:03:03 djm Exp $ |
@@ -782,10 +782,6 @@ main(int ac, char **av) | |||
782 | log_stderr = 1; | 782 | log_stderr = 1; |
783 | log_init(__progname, options.log_level, options.log_facility, log_stderr); | 783 | log_init(__progname, options.log_level, options.log_facility, log_stderr); |
784 | 784 | ||
785 | /* Make supp. groups don't get propogated to PAM modules */ | ||
786 | if (setgroups(0, NULL) < 0) | ||
787 | fatal("setgroups() failed: %.200s", strerror(errno)); | ||
788 | |||
789 | /* | 785 | /* |
790 | * If not in debugging mode, and not started from inetd, disconnect | 786 | * If not in debugging mode, and not started from inetd, disconnect |
791 | * from the controlling terminal, and fork. The original process | 787 | * from the controlling terminal, and fork. The original process |