diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-07-03 16:25:50 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-07-03 16:25:50 +0200 |
commit | c9bc07646100855ff8193e1e62c52b77327e264d (patch) | |
tree | 41a37615bb323ff5c6a5a212209ae12e6ec1b054 /src/tmpfiles | |
parent | 61b1477c8107e9b7143be9acf6bf678fa9d0674d (diff) |
mount-setup: don't complain if we try to fix the label of a dir beneath a mount but can't due to EROFS
Diffstat (limited to 'src/tmpfiles')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index dfe3daa7f7..e0b0e94664 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -469,7 +469,7 @@ static int item_set_perms(Item *i, const char *path) { return -errno; } - return label_fix(path, false); + return label_fix(path, false, false); } static int recursive_relabel_children(Item *i, const char *path) { |