From 3a686b9fa3139eb401ef9287d5dcee6997b31a08 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 5 Nov 2014 05:09:38 -0800 Subject: We do not actually need to setnsfpn on /var/cache. --- postinst.mm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'postinst.mm') diff --git a/postinst.mm b/postinst.mm index b380d64..11d70dc 100644 --- a/postinst.mm +++ b/postinst.mm @@ -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; -- cgit v1.2.3