Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/utils/setfacl.c')
-rw-r--r--winsup/utils/setfacl.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/winsup/utils/setfacl.c b/winsup/utils/setfacl.c
index 35689890c..d9d645d3c 100644
--- a/winsup/utils/setfacl.c
+++ b/winsup/utils/setfacl.c
@@ -111,7 +111,11 @@ getaclentry (action_t action, char *c, aclent_t *ace)
/* If this is a user or group entry, check if next char is a colon char.
If so, skip it, otherwise it's the name of a user or group. */
if (!(ace->a_type & (USER_OBJ | GROUP_OBJ)))
- ;
+ {
+ /* Mask and other entries may contain an extra colon. */
+ if (*c == ':')
+ ++c;
+ }
else if (*c == ':')
++c;
else if (*c)