this repo has no description
1
fork

Configure Feed

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

Update/correct the libquarantine stubs

...using some information about their usage in the new launchd code

+9 -4
+3 -1
src/quarantine/include/quarantine.h
··· 65 65 qtn_proc_t qtn_proc_alloc(void); 66 66 void qtn_proc_set_identifier(qtn_proc_t proc, const char* ident); 67 67 void qtn_proc_set_flags(qtn_proc_t proc, unsigned int flags); 68 - void qtn_proc_apply_to_self(qtn_proc_t proc); 68 + int qtn_proc_apply_to_self(qtn_proc_t proc); 69 69 void qtn_proc_free(qtn_proc_t proc); 70 70 71 71 extern int qtn_file_init_with_mount_point(qtn_file_t a, char b[1024]); 72 72 73 73 extern int qtn_file_apply_to_mount_point(qtn_file_t a, const char *b); 74 + 75 + int qtn_proc_init_with_data(qtn_proc_t proc, void* data, size_t data_len); 74 76 75 77 #define QTN_SERIALIZED_DATA_MAX 4096 76 78
+6 -3
src/quarantine/quarantine.c
··· 134 134 { 135 135 } 136 136 137 - void qtn_proc_apply_to_self(qtn_proc_t proc) 138 - { 139 - } 137 + int qtn_proc_apply_to_self(qtn_proc_t proc) { 138 + return QTN_NOT_QUARANTINED; 139 + }; 140 140 141 141 void qtn_proc_free(qtn_proc_t proc) 142 142 { ··· 153 153 return 0; 154 154 } 155 155 156 + int qtn_proc_init_with_data(qtn_proc_t proc, void* data, size_t data_len) { 157 + return 0; 158 + };