acl: fix typo in comment (#7580)
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 8 Dec 2017 12:34:25 +0000 (21:34 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 8 Dec 2017 12:34:25 +0000 (13:34 +0100)
src/shared/acl-util.c

index b24ed77..889a971 100644 (file)
@@ -226,7 +226,7 @@ int acl_search_groups(const char *path, char ***ret_groups) {
 }
 
 int parse_acl(const char *text, acl_t *acl_access, acl_t *acl_default, bool want_mask) {
-        _cleanup_free_ char **a = NULL, **d = NULL; /* strings are not be freed */
+        _cleanup_free_ char **a = NULL, **d = NULL; /* strings are not freed */
         _cleanup_strv_free_ char **split;
         char **entry;
         int r = -EINVAL;