summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index aa822df17..ce13dcaf0 100644
--- a/sshd.c
+++ b/sshd.c
@@ -782,6 +782,10 @@ 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
785 /* 789 /*
786 * If not in debugging mode, and not started from inetd, disconnect 790 * If not in debugging mode, and not started from inetd, disconnect
787 * from the controlling terminal, and fork. The original process 791 * from the controlling terminal, and fork. The original process