summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-06-26 19:12:59 +1000
committerDamien Miller <djm@mindrot.org>2002-06-26 19:12:59 +1000
commitf18cd162d310bbd69f272337e8adb57742d322c1 (patch)
treef3bbd59ab95322a349971709fafd2c45b76cdd65 /session.c
parent6de3dfd929adaa1d0a05c98cd9df4a48ed534205 (diff)
- (djm) setlogin needs pgid==pid on BSD/OS; from itojun@
Diffstat (limited to 'session.c')
-rw-r--r--session.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/session.c b/session.c
index 4bdf28d45..aadc82fef 100644
--- a/session.c
+++ b/session.c
@@ -1163,6 +1163,9 @@ do_setusercontext(struct passwd *pw)
1163 setpcred(pw->pw_name); 1163 setpcred(pw->pw_name);
1164#endif /* HAVE_SETPCRED */ 1164#endif /* HAVE_SETPCRED */
1165#ifdef HAVE_LOGIN_CAP 1165#ifdef HAVE_LOGIN_CAP
1166#ifdef __bsdi__
1167 setpgid(0, 0);
1168#endif
1166 if (setusercontext(lc, pw, pw->pw_uid, 1169 if (setusercontext(lc, pw, pw->pw_uid,
1167 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) { 1170 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1168 perror("unable to set user context"); 1171 perror("unable to set user context");