chiark / gitweb /
acl: fix typo in comment (#7580)
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 8 Dec 2017 12:34:25 +0000 (21:34 +0900)
committerSven Eden <yamakuzure@gmx.net>
Fri, 8 Dec 2017 12:34:25 +0000 (21:34 +0900)
src/shared/acl-util.c

index b99ecbba5bc0f41a62747287c33b75d49d989908..6191103df4ecabfbbf7b7acde2b61aa3195300d3 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;