Except, get the TARGET_OS_OSX check correct.

This commit is contained in:
Jason Molenda 2020-02-06 20:28:40 -08:00
parent e2fa760cdd
commit f60de4cdf7

View File

@ -3766,7 +3766,7 @@ static bool login_session_has_gui_access () {
// $ security authorizationdb read system.privilege.taskport.debug
static bool developer_mode_enabled () {
#if TARGET_OS_OSX == 1
#if TARGET_OS_OSX == 0
return true;
#else
CFDictionaryRef currentRightDict = NULL;