diff options
author | 2002-03-18 23:52:51 +0000 | |
---|---|---|
committer | 2002-03-18 23:52:51 +0000 | |
commit | bf0894bf3e6e25d7b504d82c2e0b124fca95af2a (patch) | |
tree | 63eaf1c1b0ea7399d418ec1b9af594c8e0662095 | |
parent | - fix a few typos or omissions (diff) | |
download | wireguard-openbsd-bf0894bf3e6e25d7b504d82c2e0b124fca95af2a.tar.xz wireguard-openbsd-bf0894bf3e6e25d7b504d82c2e0b124fca95af2a.zip |
UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
provos@
-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; |