diff options
author | Damien Miller <djm@mindrot.org> | 2010-06-26 09:37:57 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-06-26 09:37:57 +1000 |
commit | 7aa46ec393dd193d0a45ce7a5eb49413ead8789b (patch) | |
tree | 6f379e22be6133e1caaba7bf93a7802d2315bf58 /session.c | |
parent | 99ac4e9546b2eafc43e104d676a3b10866be98e9 (diff) |
- djm@cvs.openbsd.org 2010/06/18 03:16:03
[session.c]
Missing check for chroot_director == "none" (we already checked against
NULL); bz#1564 from Jan.Pechanec AT Sun.COM
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: session.c,v 1.253 2010/04/23 22:42:05 djm Exp $ */ | 1 | /* $OpenBSD: session.c,v 1.254 2010/06/18 03:16:03 djm 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 |
@@ -1819,7 +1819,8 @@ do_child(Session *s, const char *command) | |||
1819 | #ifdef HAVE_LOGIN_CAP | 1819 | #ifdef HAVE_LOGIN_CAP |
1820 | r = login_getcapbool(lc, "requirehome", 0); | 1820 | r = login_getcapbool(lc, "requirehome", 0); |
1821 | #endif | 1821 | #endif |
1822 | if (r || options.chroot_directory == NULL) | 1822 | if (r || options.chroot_directory == NULL || |
1823 | strcasecmp(options.chroot_directory, "none") == 0) | ||
1823 | fprintf(stderr, "Could not chdir to home " | 1824 | fprintf(stderr, "Could not chdir to home " |
1824 | "directory %s: %s\n", pw->pw_dir, | 1825 | "directory %s: %s\n", pw->pw_dir, |
1825 | strerror(errno)); | 1826 | strerror(errno)); |