diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-07-10 19:05:58 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-07-10 19:05:58 +0200 |
commit | f56d5db919902851535ac1591d5c95ebcd3a0b17 (patch) | |
tree | 73acb64002690210cd7488363129aaf9b96403ae /src/tmpfiles | |
parent | 825c6fe5eb362437aa46faa52b683a62eede9a13 (diff) |
util: rm_rf() refuse cleaning non-memory file systems, as extra paranoia
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 e0b0e94664..2d5d90d265 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -845,7 +845,7 @@ static int remove_item_instance(Item *i, const char *instance) { case RECURSIVE_REMOVE_PATH: /* FIXME: we probably should use dir_cleanup() here * instead of rm_rf() so that 'x' is honoured. */ - r = rm_rf(instance, false, i->type == RECURSIVE_REMOVE_PATH, false); + r = rm_rf_dangerous(instance, false, i->type == RECURSIVE_REMOVE_PATH, false); if (r < 0 && r != -ENOENT) { log_error("rm_rf(%s): %s", instance, strerror(-r)); return r; |