- stevesk@cvs.openbsd.org 2002/03/18 23:52:51
[servconf.c] UnprivUser/UnprivGroup usable now--specify numeric user/group; ok provos@
This commit is contained in:
parent
191c8e5eb9
commit
01426a67c8
|
@ -71,6 +71,10 @@
|
||||||
- provos@cvs.openbsd.org 2002/03/18 17:59:09
|
- provos@cvs.openbsd.org 2002/03/18 17:59:09
|
||||||
[sshd.8]
|
[sshd.8]
|
||||||
document UsePrivilegeSeparation
|
document UsePrivilegeSeparation
|
||||||
|
- stevesk@cvs.openbsd.org 2002/03/18 23:52:51
|
||||||
|
[servconf.c]
|
||||||
|
UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
|
||||||
|
provos@
|
||||||
|
|
||||||
20020317
|
20020317
|
||||||
- (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
|
- (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
|
||||||
|
@ -7917,4 +7921,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1945 2002/03/22 02:37:50 mouring Exp $
|
$Id: ChangeLog,v 1.1946 2002/03/22 02:40:03 mouring Exp $
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: servconf.c,v 1.102 2002/03/18 17:50:31 provos Exp $");
|
RCSID("$OpenBSD: servconf.c,v 1.103 2002/03/18 23:52:51 stevesk Exp $");
|
||||||
|
|
||||||
#if defined(KRB4) || defined(KRB5)
|
#if defined(KRB4) || defined(KRB5)
|
||||||
#include <krb.h>
|
#include <krb.h>
|
||||||
|
@ -748,11 +748,11 @@ parse_flag:
|
||||||
|
|
||||||
case sUnprivUser:
|
case sUnprivUser:
|
||||||
intptr = &options->unprivileged_user;
|
intptr = &options->unprivileged_user;
|
||||||
goto parse_flag;
|
goto parse_int;
|
||||||
|
|
||||||
case sUnprivGroup:
|
case sUnprivGroup:
|
||||||
intptr = &options->unprivileged_group;
|
intptr = &options->unprivileged_group;
|
||||||
goto parse_flag;
|
goto parse_int;
|
||||||
|
|
||||||
case sUnprivDir:
|
case sUnprivDir:
|
||||||
charptr = &options->unprivileged_dir;
|
charptr = &options->unprivileged_dir;
|
||||||
|
|
Loading…
Reference in New Issue