- stevesk@cvs.openbsd.org 2002/03/18 23:52:51
     [servconf.c]
     UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
     provos@
diff --git a/ChangeLog b/ChangeLog
index df05e15..d70c27a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -71,6 +71,10 @@
    - provos@cvs.openbsd.org 2002/03/18 17:59:09
      [sshd.8]
      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
  - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
@@ -7917,4 +7921,4 @@
  - Wrote replacements for strlcpy and mkdtemp
  - 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 $
diff --git a/servconf.c b/servconf.c
index 3b6b55e..72d75cc 100644
--- a/servconf.c
+++ b/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>
@@ -748,11 +748,11 @@
 
 	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;