Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Jan 2000 06:30:53 +0000 (06:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Jan 2000 06:30:53 +0000 (06:30 +0000)
* sysdeps/unix/sysv/linux/i386/getgroups.c: Fix missing brace
error in last change.
* sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.

ChangeLog
sysdeps/unix/sysv/linux/i386/getgroups.c
sysdeps/unix/sysv/linux/i386/setgroups.c

index fea1b30..ff4a5cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2000-01-16  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/unix/sysv/linux/i386/getgroups.c: Fix missing brace
+       error in last change.
+       * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
+
        * stdlib/longlong.h: Fix typo in last patch.
 
 2000-01-12  Andreas Jaeger  <aj@suse.de>
index b538f8f..4ada764 100644 (file)
@@ -76,8 +76,8 @@ __getgroups (int n, gid_t *groups)
          groups[i] = kernel_groups[i];
 
       return ngids;
-    }
 #endif
+    }
 }
 
 weak_alias (__getgroups, getgroups)
index 7c750ac..eb02350 100644 (file)
@@ -81,6 +81,6 @@ setgroups (size_t n, const gid_t *groups)
        }
 
       return INLINE_SYSCALL (setgroups, 2, n, kernel_groups);
-    }
 #endif
+    }
 }