search for: dot_chroot

Displaying 1 result from an estimated 1 matches for "dot_chroot".

2001 Jul 20
0
Updated chroot patch
...:^) Thanks for the hard work on OpenSSH. -----------------------------< cut here >------------------------------- --- session.c.orig Sun Jun 17 05:40:51 2001 +++ session.c Fri Jul 20 01:40:33 2001 @@ -93,6 +93,9 @@ # include <uinfo.h> #endif +/* support /./ in homedir */ +#define DOT_CHROOT + /* types */ #define TTYSZ 64 @@ -1037,6 +1040,10 @@ extern char **environ; struct stat st; char *argv[10]; +#ifdef DOT_CHROOT + char *user_dir; + char *new_root; +#endif int do_xauth = s->auth_proto != NULL && s->auth_data != NULL; #ifdef WITH_IRIX_PROJECT prid_t proj...