diff options
-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; |