summaryrefslogtreecommitdiffstats
path: root/sbin/fsdb
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-08-06 20:41:04 +0000
committerderaadt <deraadt@openbsd.org>1999-08-06 20:41:04 +0000
commit7212eb4e9e9e76c1b502f5026cf00d412f122285 (patch)
treeaff5a826a8178f66236f4fc2edcf653e5f4283d7 /sbin/fsdb
parentEEPROM_PNP was wrong (diff)
downloadwireguard-openbsd-7212eb4e9e9e76c1b502f5026cf00d412f122285.tar.xz
wireguard-openbsd-7212eb4e9e9e76c1b502f5026cf00d412f122285.zip
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;