summaryrefslogtreecommitdiffstats
path: root/twrp-functions.cpp
diff options
context:
space:
mode:
authorbigbiff bigbiff <bigbiff@teamw.in>2013-01-21 18:02:40 +0100
committerGerrit Code Review <gerrit@5.9.244.119>2013-01-21 18:02:40 +0100
commit9d880030d683a28ff90c823e7dcb42f0a3bbcf66 (patch)
treee00d9441ef1f474c9965d7b045dd85f293b6e6b1 /twrp-functions.cpp
parentchange fuse to be compiled with TW_INCLUDE_FUSE_EXFAT (diff)
parentRemove sockets and FIFOS when removing files (diff)
downloadandroid_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.tar
android_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.tar.gz
android_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.tar.bz2
android_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.tar.lz
android_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.tar.xz
android_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.tar.zst
android_bootable_recovery-9d880030d683a28ff90c823e7dcb42f0a3bbcf66.zip
Diffstat (limited to 'twrp-functions.cpp')
-rw-r--r--twrp-functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp
index d7596b8a0..edf4898b1 100644
--- a/twrp-functions.cpp
+++ b/twrp-functions.cpp
@@ -426,7 +426,7 @@ int TWFunc::removeDir(const string path, bool skipParent) {
else
LOGI("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
}
- } else if (p->d_type == DT_REG || p->d_type == DT_LNK) {
+ } else if (p->d_type == DT_REG || p->d_type == DT_LNK || p->d_type == DT_FIFO || p->d_type == DT_SOCK) {
r = unlink(new_path.c_str());
if (!r)
LOGI("Unable to unlink '%s'\n", new_path.c_str());