diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 04:11:49 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 04:11:49 +0100 |
commit | c7431341911e911993776c357ca57d1fb7ed1b23 (patch) | |
tree | 3e7fec3c3985b8f7584b4a03ce7df035d361c442 /ssh.h | |
parent | - markus@cvs.openbsd.org 2002/03/19 15:31:47 (diff) | |
download | openssh-c7431341911e911993776c357ca57d1fb7ed1b23.tar.xz openssh-c7431341911e911993776c357ca57d1fb7ed1b23.zip |
- stevesk@cvs.openbsd.org 2002/03/20 19:12:25
[servconf.c servconf.h ssh.h sshd.c]
for unprivileged user, group do:
pw=getpwnam(SSH_PRIVSEP_USER); do_setusercontext(pw). ok provos@
Diffstat (limited to 'ssh.h')
-rw-r--r-- | ssh.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.h,v 1.64 2002/03/04 17:27:39 stevesk Exp $ */ +/* $OpenBSD: ssh.h,v 1.65 2002/03/20 19:12:25 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -99,4 +99,11 @@ /* Used to identify ``EscapeChar none'' */ #define SSH_ESCAPECHAR_NONE -2 +/* + * unprivileged user when UsePrivilegeSeparation=yes; + * sshd will change its pivileges to this user and its + * primary group. + */ +#define SSH_PRIVSEP_USER "nobody" + #endif /* SSH_H */ |