diff options
author | Damien Miller <djm@mindrot.org> | 2013-04-23 15:22:13 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-04-23 15:22:13 +1000 |
commit | f1a02aea35504e8bef2ed9eef6f9ddeab12bacb3 (patch) | |
tree | 2096d603b881a4d900bbd931732ef20148a1e4fe /session.c | |
parent | d5edefd27a30768cc7a4817302e964b6cb2f9be7 (diff) |
- dtucker@cvs.openbsd.org 2013/04/17 09:04:09
[session.c]
revert rev 1.262; it fails because uid is already set here. ok djm@
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: session.c,v 1.262 2013/03/06 23:35:23 djm Exp $ */ | 1 | /* $OpenBSD: session.c,v 1.263 2013/04/17 09:04:09 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
4 | * All rights reserved | 4 | * All rights reserved |
@@ -1529,9 +1529,7 @@ do_setusercontext(struct passwd *pw) | |||
1529 | /* Permanently switch to the desired uid. */ | 1529 | /* Permanently switch to the desired uid. */ |
1530 | permanently_set_uid(pw); | 1530 | permanently_set_uid(pw); |
1531 | #endif | 1531 | #endif |
1532 | } else if (options.chroot_directory != NULL && | 1532 | } |
1533 | strcasecmp(options.chroot_directory, "none") != 0) | ||
1534 | fatal("server lacks privileges to chroot to ChrootDirectory"); | ||
1535 | 1533 | ||
1536 | if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid) | 1534 | if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid) |
1537 | fatal("Failed to set uids to %u.", (u_int) pw->pw_uid); | 1535 | fatal("Failed to set uids to %u.", (u_int) pw->pw_uid); |