summaryrefslogtreecommitdiff
path: root/getgroups.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-02-14 00:53:43 +0000
committerWayne Davison <wayned@samba.org>2005-02-14 00:53:43 +0000
commit4f5b0756df0dfc925b9576db47ecce949c378e18 (patch)
tree770662e2442bc1f022e592d46a4489948f8be2ac /getgroups.c
parentfe1c19dcdfa000c2461e85ed7bf712de49904377 (diff)
downloadrsync-4f5b0756df0dfc925b9576db47ecce949c378e18.tar.gz
rsync-4f5b0756df0dfc925b9576db47ecce949c378e18.tar.bz2
rsync-4f5b0756df0dfc925b9576db47ecce949c378e18.zip
John E. Malmberg convinced me to standardize on #ifs for defined
values instead of non-zero.
Diffstat (limited to 'getgroups.c')
-rw-r--r--getgroups.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/getgroups.c b/getgroups.c
index 6b4259d7..6a8fac2e 100644
--- a/getgroups.c
+++ b/getgroups.c
@@ -34,7 +34,7 @@ main(UNUSED(int argc), UNUSED(char *argv[]))
gid_t gid = MY_GID();
int gid_in_list = 0;
-#if HAVE_GETGROUPS
+#ifdef HAVE_GETGROUPS
if ((n = getgroups(0, NULL)) < 0) {
perror("getgroups");
return 1;
@@ -49,7 +49,7 @@ main(UNUSED(int argc), UNUSED(char *argv[]))
exit(1);
}
-#if HAVE_GETGROUPS
+#ifdef HAVE_GETGROUPS
if (n > 0)
n = getgroups(n, list);
#endif