added extra checks on DNS resolution for optimizations

removed logic to ignore 'access denied/file not found' - since we might just not have perms, but still want to show em!
This commit is contained in:
Patrick Wardle
2016-02-28 12:01:51 -10:00
parent 9585a14eb4
commit db915f26f5
4 changed files with 10 additions and 62 deletions
+2 -2
View File
@@ -153,10 +153,10 @@
installArgs[0] = "-R";
//2nd arg: permissions
// ->4 at front is setuid
// ->note: 4 at front is setuid
//TODO: change b4 release
// ->make 4755 before deploy (for testing, 777 makes Xcode be able to del it during build!)
installArgs[1] = "4777";
installArgs[1] = "4755";
//3rd arg: XPC service
installArgs[2] = [xpcService UTF8String];