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/shared/util.h | |
parent | 825c6fe5eb362437aa46faa52b683a62eede9a13 (diff) |
util: rm_rf() refuse cleaning non-memory file systems, as extra paranoia
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 47497b578c..89e9a00afc 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -358,7 +358,9 @@ int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid); int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid); int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev); +int rm_rf_children_dangerous(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev); int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky); +int rm_rf_dangerous(const char *path, bool only_dirs, bool delete_root, bool honour_sticky); int pipe_eof(int fd); |