[Fakeroot-commits] [SCM] fakeroot branch, upstream, updated. debian/1.14.3-200-gb232f8a

Clint Adams schizo at debian.org
Tue Aug 23 13:05:22 UTC 2011


The following commit has been merged in the upstream branch:
commit 7d6eabd899bdeddcbe67a014def7ba856a542200
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/debian/changelog b/debian/changelog
index 6c38ff7..3892ca1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+fakeroot (1.0.3) unstable; urgency=low
+
+  * libfakeroot.c: correctly handle platforms where the first
+    argument to setgroups() is int.
+
+ -- Clint Adams <schizo at debian.org>  Fri, 18 Jun 2004 15:42:33 -0400
+
 fakeroot (1.0.2) unstable; urgency=low
 
   * Fix the broken symlinks I just introduced.
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