this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add missing functions to libsystem_quarantine These are needed for Security'x

+18
+14
src/quarantine/quarantine.c
··· 101 101 return 0; 102 102 } 103 103 104 + int __esp_enabled() 105 + { 106 + return QTN_NOT_QUARANTINED; 107 + } 108 + 109 + int __esp_check_ns(const char *a, void *b) 110 + { 111 + return QTN_NOT_QUARANTINED; 112 + } 113 + 114 + int __esp_notify_ns(const char *a, void *b) 115 + { 116 + return QTN_NOT_QUARANTINED; 117 + }
+4
src/quarantine/quarantine.h
··· 49 49 50 50 extern const char *_qtn_xattr_name; 51 51 52 + extern int __esp_enabled(); 53 + extern int __esp_check_ns(const char *a, void *b); 54 + extern int __esp_notify_ns(const char *a, void *b); 55 + 52 56 #define QTN_SERIALIZED_DATA_MAX 4096 53 57 54 58 #define qtn_file_alloc _qtn_file_alloc