From: Corinna Vinschen Date: Thu, 7 Jan 2016 12:28:12 +0000 (+0100) Subject: Drop use of not yet available type acl_perm_t X-Git-Tag: cygwin-2_4_0-release~16 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=b8f9d8de2ccdd20f9b10094e65a1750f650c3088;p=newlib-cygwin.git 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 --- diff --git a/winsup/cygwin/sec_acl.cc b/winsup/cygwin/sec_acl.cc index 63257ffcf..666506f2b 100644 --- a/winsup/cygwin/sec_acl.cc +++ b/winsup/cygwin/sec_acl.cc @@ -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)