]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
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 b24ed7798587bba8f614b0ce7cb232f341e35fcc..889a971d88bcbc9c66ebf0c9f5e0331839ea139c 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;