[Fakeroot-commits] [SCM] fakeroot branch, upstream, updated. 08ed00124d8b6b445d3b91a9aa15eec638b02f05
Clint Adams
schizo at debian.org
Sun Nov 15 03:16:44 UTC 2009
The following commit has been merged in the upstream branch:
commit 4dccc1bd397e1081c2db5ad8785d0336594c1e6a
Author: Clint Adams <schizo at debian.org>
Date: Fri Jun 18 19:45:08 2004 +0000
setgroups() first arg fix
* libfakeroot.c: correctly handle platforms where the first
argument to setgroups() is int.
git-archimport-id: fakeroot at packages.debian.org--fakeroot/fakeroot--main--0.0--patch-1
diff --git a/libfakeroot.c b/libfakeroot.c
index a8abbc8..4db1ca8 100644
--- a/libfakeroot.c
+++ b/libfakeroot.c
@@ -740,7 +740,7 @@ int initgroups(const char* user, INITGROUPS_SECOND_ARG group){
return 0;
}
-int setgroups(size_t size, const gid_t *list){
+int setgroups(SETGROUPS_SIZE_TYPE size, const gid_t *list){
if (fakeroot_disabled)
return next_setgroups(size, list);
else
--
fakeroot
More information about the Fakeroot-commits
mailing list