aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-01-17 06:30:53 +0000
committerUlrich Drepper <drepper@redhat.com>2000-01-17 06:30:53 +0000
commitebf282c9cfe083f0ace9a05d6aa421b6e32cc2f6 (patch)
treeae01bc71e61c5a296efdce294633156f97fcdac2 /sysdeps
parent098aba9a5f0ea55046f4255bb54c40a29da95a15 (diff)
downloadglibc-ebf282c9cfe083f0ace9a05d6aa421b6e32cc2f6.tar
glibc-ebf282c9cfe083f0ace9a05d6aa421b6e32cc2f6.tar.gz
glibc-ebf282c9cfe083f0ace9a05d6aa421b6e32cc2f6.tar.bz2
glibc-ebf282c9cfe083f0ace9a05d6aa421b6e32cc2f6.zip
Update.
* sysdeps/unix/sysv/linux/i386/getgroups.c: Fix missing brace error in last change. * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/i386/getgroups.c2
-rw-r--r--sysdeps/unix/sysv/linux/i386/setgroups.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/getgroups.c b/sysdeps/unix/sysv/linux/i386/getgroups.c
index b538f8f79a..4ada764f0c 100644
--- a/sysdeps/unix/sysv/linux/i386/getgroups.c
+++ b/sysdeps/unix/sysv/linux/i386/getgroups.c
@@ -76,8 +76,8 @@ __getgroups (int n, gid_t *groups)
groups[i] = kernel_groups[i];
return ngids;
- }
#endif
+ }
}
weak_alias (__getgroups, getgroups)
diff --git a/sysdeps/unix/sysv/linux/i386/setgroups.c b/sysdeps/unix/sysv/linux/i386/setgroups.c
index 7c750acc74..eb02350371 100644
--- a/sysdeps/unix/sysv/linux/i386/setgroups.c
+++ b/sysdeps/unix/sysv/linux/i386/setgroups.c
@@ -81,6 +81,6 @@ setgroups (size_t n, const gid_t *groups)
}
return INLINE_SYSCALL (setgroups, 2, n, kernel_groups);
- }
#endif
+ }
}