aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1994-09-23 10:02:21 +0000
committerDavid Greenman <dg@FreeBSD.org>1994-09-23 10:02:21 +0000
commit25738fbcc535b81c7b0e34f99410b6125e5de53f (patch)
treedbbb959e023ce3b0e7a90b75cd123aab0e8f2411 /usr.sbin
parentffaf90b1ecd438f3b680fe2b0cf0ecb92bf85ba3 (diff)
downloadsrc-25738fbcc535b81c7b0e34f99410b6125e5de53f.tar.gz
src-25738fbcc535b81c7b0e34f99410b6125e5de53f.zip
groups[] is of type gid_t.
Notes
Notes: svn path=/head/; revision=3032
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/chown/chown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/chown/chown.c b/usr.sbin/chown/chown.c
index 9121777f7f8e..5dd08677f7ed 100644
--- a/usr.sbin/chown/chown.c
+++ b/usr.sbin/chown/chown.c
@@ -238,7 +238,7 @@ chownerr(file)
char *file;
{
static int euid = -1, ngroups = -1;
- int groups[NGROUPS];
+ gid_t groups[NGROUPS];
/* Check for chown without being root. */
if (errno != EPERM ||