diff options
Diffstat (limited to 'acl.go')
-rw-r--r-- | acl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ func ParseACL(def []string) (ACL, error) { attr, exclAttr := []string{}, []string{} for _, s := range splitNoEmpty(parts[4]) { if s[0] == '!' { - exclAttr = append(exclAttr, s) + exclAttr = append(exclAttr, s[1:]) } else { attr = append(attr, s) } |