Drop use of not yet available type acl_perm_t
* sec_acl.cc (__aclcalcmask): Use mode_t instead of acl_perm_t Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
a2d0100644
commit
b8f9d8de2c
|
@ -1298,7 +1298,7 @@ aclcheck32 (aclent_t *aclbufp, int nentries, int *which)
|
|||
void
|
||||
__aclcalcmask (aclent_t *aclbufp, int nentries)
|
||||
{
|
||||
acl_perm_t mask = 0;
|
||||
mode_t mask = 0;
|
||||
int mask_idx = -1;
|
||||
|
||||
for (int idx = 0; idx < nentries; ++idx)
|
||||
|
|
Loading…
Reference in New Issue