diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2017-12-08 13:34:25 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-12-08 13:34:25 +0100 |
commit | 848f01784e72f52686ab6eb38301ff3007ce2da5 (patch) | |
tree | 6329e0092f2da1c832c4c944576db4af268958cc /src/shared/acl-util.c | |
parent | networkd: Ignore DNS information when uplink is not managed (#7571) (diff) | |
download | systemd-848f01784e72f52686ab6eb38301ff3007ce2da5.tar.xz systemd-848f01784e72f52686ab6eb38301ff3007ce2da5.zip |
acl: fix typo in comment (#7580)
Diffstat (limited to 'src/shared/acl-util.c')
-rw-r--r-- | src/shared/acl-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/acl-util.c b/src/shared/acl-util.c index b24ed77985..889a971d88 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; |