summaryrefslogtreecommitdiff
path: root/sbin/fsdb
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-08-06 20:41:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-08-06 20:41:09 +0000
commitabdab9264887b198168dac150a9bbff44a774868 (patch)
tree26c311697fe239df4698e550f705fd8ef5a9a932 /sbin/fsdb
parentcde63a0b937f284da8b2903ae196fc5bfb998ea8 (diff)
uid_t and gid_t, and use %u
Diffstat (limited to 'sbin/fsdb')
-rw-r--r--sbin/fsdb/fsdb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsdb/fsdb.c b/sbin/fsdb/fsdb.c
index 1ba03e1a138..762ad52c5ea 100644
--- a/sbin/fsdb/fsdb.c
+++ b/sbin/fsdb/fsdb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fsdb.c,v 1.6 1999/05/19 03:17:15 alex Exp $ */
+/* $OpenBSD: fsdb.c,v 1.7 1999/08/06 20:41:06 deraadt Exp $ */
/* $NetBSD: fsdb.c,v 1.7 1997/01/11 06:50:53 lukem Exp $ */
/*-
@@ -766,7 +766,7 @@ CMDFUNCSTART(linkcount)
CMDFUNCSTART(chowner)
{
int rval = 1;
- unsigned long uid;
+ uid_t uid;
char *cp;
struct passwd *pwd;
@@ -793,7 +793,7 @@ CMDFUNCSTART(chowner)
CMDFUNCSTART(chgroup)
{
int rval = 1;
- unsigned long gid;
+ gid_t gid;
char *cp;
struct group *grp;