diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/group-list.c | 4 | ||||
-rw-r--r-- | src/id.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/group-list.c b/src/group-list.c index 3547ed669..46895b474 100644 --- a/src/group-list.c +++ b/src/group-list.c @@ -1,5 +1,5 @@ /* group-list.c --Print a list of group IDs or names. - Copyright (C) 1989-2008 Free Software Foundation, Inc. + Copyright (C) 1989-2009 Free Software Foundation, Inc. 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 @@ print_group_list (const char *username, #if HAVE_GETGROUPS { GETGROUPS_T *groups; - size_t i; + int i; int n_groups = mgetgroups (username, (pwd ? pwd->pw_gid : (gid_t) -1), &groups); @@ -1,5 +1,5 @@ /* id -- print real and effective UIDs and GIDs - Copyright (C) 1989-2008 Free Software Foundation, Inc. + Copyright (C) 1989-2009 Free Software Foundation, Inc. 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 @@ -294,7 +294,7 @@ print_full_info (const char *username) #if HAVE_GETGROUPS { GETGROUPS_T *groups; - size_t i; + int i; int n_groups = mgetgroups (username, (pwd ? pwd->pw_gid : (gid_t) -1), &groups); |