]> git.saurik.com Git - cydia.git/blobdiff - postinst.mm
We do not actually need to setnsfpn on /var/cache.
[cydia.git] / postinst.mm
index b380d6445696235491586dfd993b9ea13120b618..11d70dc953237925130beed95e0af6ba9d7b6ba7 100644 (file)
@@ -71,12 +71,11 @@ static bool MoveStash() {
 }
 
 static bool FixProtections() {
-    for (const char *path : (const char *[]) {"/var/lib", "/var/cache"}) {
-        mkdir(path, 0755);
-        if (!setnsfpn(path)) {
-            fprintf(stderr, "failed to setnsfpn %s\n", path);
-            return false;
-        }
+    const char *path("/var/lib");
+    mkdir(path, 0755);
+    if (!setnsfpn(path)) {
+        fprintf(stderr, "failed to setnsfpn %s\n", path);
+        return false;
     }
 
     return true;