From: Yu Watanabe Date: Fri, 8 Dec 2017 12:34:25 +0000 (+0900) Subject: acl: fix typo in comment (#7580) X-Git-Tag: v236~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=848f01784e72f52686ab6eb38301ff3007ce2da5;p=thirdparty%2Fsystemd.git acl: fix typo in comment (#7580) --- diff --git a/src/shared/acl-util.c b/src/shared/acl-util.c index b24ed779858..889a971d88b 100644 --- a/src/shared/acl-util.c +++ b/src/shared/acl-util.c @@ -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;