mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-22 14:33:25 +08:00
use SYS_setgroup32 syscall if available. closes #319
This commit is contained in:
parent
a22b79c416
commit
d9a79062b8
@ -126,7 +126,11 @@ int
|
|||||||
setgroups(const gid_t_rec *rec)
|
setgroups(const gid_t_rec *rec)
|
||||||
{
|
{
|
||||||
#if defined __linux__ and UGID_USE_RWLOCK == 0
|
#if defined __linux__ and UGID_USE_RWLOCK == 0
|
||||||
|
# if defined SYS_setgroups32
|
||||||
|
return ::syscall(SYS_setgroups32,rec->size,rec->gids);
|
||||||
|
# else
|
||||||
return ::syscall(SYS_setgroups,rec->size,rec->gids);
|
return ::syscall(SYS_setgroups,rec->size,rec->gids);
|
||||||
|
# endif
|
||||||
#else
|
#else
|
||||||
return ::setgroups(rec->size,rec->gids);
|
return ::setgroups(rec->size,rec->gids);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user