diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-03-18 23:52:52 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-03-18 23:52:52 +0000 |
commit | 03ac82aa861ab1415548914e42c8cc3ee6639967 (patch) | |
tree | f7c7a82ce23cf71f605b430260fe9b9399d6ed30 /usr.bin/ssh | |
parent | 2c0bb5b25a32150c1e5f726cb65bb9dfab65a155 (diff) |
UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
provos@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/servconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 4853beccf60..78635bd0956 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -10,7 +10,7 @@ */ #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) #include <krb.h> @@ -726,11 +726,11 @@ parse_flag: case sUnprivUser: intptr = &options->unprivileged_user; - goto parse_flag; + goto parse_int; case sUnprivGroup: intptr = &options->unprivileged_group; - goto parse_flag; + goto parse_int; case sUnprivDir: charptr = &options->unprivileged_dir; |