summaryrefslogtreecommitdiff
path: root/lib/getugroups.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-06-04 06:47:31 +0000
committerJim Meyering <jim@meyering.net>2000-06-04 06:47:31 +0000
commit985cf06296f0a9861fe68b88db4aa4f4fc1abf58 (patch)
tree1d01f486d688940944a3e33732c0e5837b2191f1 /lib/getugroups.c
parent377d7cdb852e8cfd89d3484276b65e5530bc0a06 (diff)
downloadcoreutils-985cf06296f0a9861fe68b88db4aa4f4fc1abf58.tar.xz
(getugroups): Cast -1 to gid_t, for systems like
SunOS4.1.4 for which gid_t is an unsigned type.
Diffstat (limited to 'lib/getugroups.c')
-rw-r--r--lib/getugroups.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/getugroups.c b/lib/getugroups.c
index 44aeb809c..2be31ecb2 100644
--- a/lib/getugroups.c
+++ b/lib/getugroups.c
@@ -1,5 +1,5 @@
/* getugroups.c -- return a list of the groups a user is in
- Copyright (C) 1990, 1991, 1998, 1999 Free Software Foundation.
+ Copyright (C) 1990, 1991, 1998, 1999, 2000 Free Software Foundation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -57,7 +57,7 @@ getugroups (int maxcount, GETGROUPS_T *grouplist, char *username, gid_t gid)
register char **cp;
register int count = 0;
- if (gid != -1)
+ if (gid != (gid_t) -1)
{
if (maxcount != 0)
grouplist[count] = gid;