acl: fix typo in comment (#7580)

This commit is contained in:
Yu Watanabe 2017-12-08 21:34:25 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 349a981d32
commit 848f01784e

View 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;