]> git.saurik.com Git - cydia.git/blobdiff - Sources.mm
Remove cydo debugging code (it is exploitable :/).
[cydia.git] / Sources.mm
index 4cc2f9e927d43db7ef8d867c5422e681a7e787ff..790dd1bff51882ebb2e1fa3054d4edccb1bd07b9 100644 (file)
@@ -28,9 +28,9 @@
 #include "Sources.h"
 
 extern _H<NSMutableDictionary> Sources_;
-extern bool Changed_;
 
 void CydiaWriteSources() {
+    unlink(SOURCES_LIST);
     FILE *file(fopen(SOURCES_LIST, "w"));
     _assert(file != NULL);
 
@@ -55,7 +55,6 @@ void CydiaWriteSources() {
 
 void CydiaAddSource(NSDictionary *source) {
     [Sources_ setObject:source forKey:[NSString stringWithFormat:@"%@:%@:%@", [source objectForKey:@"Type"], [source objectForKey:@"URI"], [source objectForKey:@"Distribution"]]];
-    Changed_ = true;
 }
 
 void CydiaAddSource(NSString *href, NSString *distribution, NSArray *sections) {