diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-10-26 17:19:59 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-10-26 17:19:59 -0700 |
commit | 4cc6631991a9a0fbcabe025ca18dab0ead890fff (patch) | |
tree | 23db7a247727b020115d8bedb175071481cf3429 | |
parent | ad502f71d5cd68490d27171c98c0377a2a4ab6fc (diff) |
Entirely isolate setreuid logic to MobileCydia.mm.
-rw-r--r-- | MobileCydia.mm | 4 | ||||
-rw-r--r-- | Sources.mm | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 86a36ff..a2d65cc 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9059,7 +9059,7 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi } } - CydiaWriteSources(); + _root(true) CydiaWriteSources(); } // Navigation controller for the queuing badge. @@ -10402,7 +10402,7 @@ int main(int argc, char *argv[]) { } broken = nil; /* }}} */ - CydiaWriteSources(); + _root(true) CydiaWriteSources(); _trace(); _root(true) MetaFile_.Open("/var/lib/cydia/metadata.cb0"); @@ -29,8 +29,6 @@ extern _H<NSMutableDictionary> Sources_; extern bool Changed_; void CydiaWriteSources() { - seteuid(0); - FILE *file(fopen("/etc/apt/sources.list.d/cydia.list", "w")); _assert(file != NULL); @@ -51,8 +49,6 @@ void CydiaWriteSources() { } fclose(file); - - seteuid(501); } void CydiaAddSource(NSDictionary *source) { |