mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sysdeps/unix/sysv/linux/i386/getgroups.c: Fix missing brace error in last change. * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
2000-01-16 Ulrich Drepper <drepper@cygnus.com>
|
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.
|
* stdlib/longlong.h: Fix typo in last patch.
|
||||||
|
|
||||||
2000-01-12 Andreas Jaeger <aj@suse.de>
|
2000-01-12 Andreas Jaeger <aj@suse.de>
|
||||||
|
@ -76,8 +76,8 @@ __getgroups (int n, gid_t *groups)
|
|||||||
groups[i] = kernel_groups[i];
|
groups[i] = kernel_groups[i];
|
||||||
|
|
||||||
return ngids;
|
return ngids;
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
weak_alias (__getgroups, getgroups)
|
weak_alias (__getgroups, getgroups)
|
||||||
|
@ -81,6 +81,6 @@ setgroups (size_t n, const gid_t *groups)
|
|||||||
}
|
}
|
||||||
|
|
||||||
return INLINE_SYSCALL (setgroups, 2, n, kernel_groups);
|
return INLINE_SYSCALL (setgroups, 2, n, kernel_groups);
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user