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)
downloadopenssh-git-f18cd162d310bbd69f272337e8adb57742d322c1.tar.gz
- (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 4bdf28d4..aadc82fe 100644
--- a/session.c
+++ b/session.c
@@ -1163,6 +1163,9 @@ do_setusercontext(struct passwd *pw)
setpcred(pw->pw_name);
#endif /* HAVE_SETPCRED */
#ifdef HAVE_LOGIN_CAP
+#ifdef __bsdi__
+ setpgid(0, 0);
+#endif
if (setusercontext(lc, pw, pw->pw_uid,
(LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
perror("unable to set user context");