Got rid of the --no-ir kluge in this test.
[rsync/rsync.git] / getgroups.c
... / ...
CommitLineData
1/*
2 * Print out the gids of all groups for the current user. This is like
3 * `id -G` on Linux, but it's too hard to find a portable equivalent.
4 *
5 * Copyright (C) 2002 Martin Pool
6 * Copyright (C) 2003-2007 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
20 */
21
22#include "rsync.h"
23
24int
25main(UNUSED(int argc), UNUSED(char *argv[]))
26{
27 int n, i;
28 gid_t *list;
29 gid_t gid = MY_GID();
30 int gid_in_list = 0;
31
32#ifdef HAVE_GETGROUPS
33 if ((n = getgroups(0, NULL)) < 0) {
34 perror("getgroups");
35 return 1;
36 }
37#else
38 n = 0;
39#endif
40
41 list = (gid_t*)malloc(sizeof (gid_t) * (n + 1));
42 if (!list) {
43 fprintf(stderr, "out of memory!\n");
44 exit(1);
45 }
46
47#ifdef HAVE_GETGROUPS
48 if (n > 0)
49 n = getgroups(n, list);
50#endif
51
52 for (i = 0; i < n; i++) {
53 printf("%lu ", (unsigned long)list[i]);
54 if (list[i] == gid)
55 gid_in_list = 1;
56 }
57 /* The default gid might not be in the list on some systems. */
58 if (!gid_in_list)
59 printf("%lu", (unsigned long)gid);
60 printf("\n");
61
62 return 0;
63}