Skip to content

Commit

Permalink
santad: enable sysx cache by default
Browse files Browse the repository at this point in the history
We've had this enabled long enough now to know that it works correctly and helps performance considerably, so let's have it on by default.
  • Loading branch information
russellhancox committed Oct 18, 2021
1 parent fa6630a commit 74af55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/common/SNTConfigurator.m
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ - (BOOL)enableSystemExtension {

- (BOOL)enableSysxCache {
NSNumber *number = self.configState[kEnableSysxCache];
return number ? [number boolValue] : NO;
return number ? [number boolValue] : YES;
}

- (BOOL)enableForkAndExitLogging {
Expand Down

0 comments on commit 74af55f

Please sign in to comment.