mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-02 14:29:45 +08:00
Merge pull request #320 from trapexit/setgroups-arm
use SYS_setgroup32 syscall if available. closes #319
This commit is contained in:
commit
b8beeaceb3
|
@ -126,7 +126,11 @@ int
|
|||
setgroups(const gid_t_rec *rec)
|
||||
{
|
||||
#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);
|
||||
# endif
|
||||
#else
|
||||
return ::setgroups(rec->size,rec->gids);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue
Block a user