Remove sockets and FIFOS when removing files
diff --git a/partition.cpp b/partition.cpp
index 291f6ba..d16ed7c 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -1234,7 +1234,7 @@
 			dir.append(de->d_name);
 			if (de->d_type == DT_DIR) {
 				TWFunc::removeDir(dir, false);
-			} else if (de->d_type == DT_REG || de->d_type == DT_LNK) {
+			} else if (de->d_type == DT_REG || de->d_type == DT_LNK || de->d_type == DT_FIFO || de->d_type == DT_SOCK) {
 				if (!unlink(dir.c_str()))
 					LOGI("Unable to unlink '%s'\n", dir.c_str());
 			}