this repo has no description
1
fork

Configure Feed

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

Return success from sandbox_*() functions

+4 -4
+4 -4
src/sandbox/sandbox.c
··· 11 11 int sandbox_init(const char *profile, uint64_t flags, char **errorbuf) 12 12 { 13 13 *errorbuf = strdup("Not implemented"); 14 - return -1; 14 + return 0; 15 15 } 16 16 17 17 const char kSBXProfileNoInternet[] = "no_internet"; ··· 52 52 int sandbox_init_with_parameters(const char *profile, uint64_t flags, const char *const parameters[], char **errorbuf) 53 53 { 54 54 *errorbuf = strdup("Not implemented"); 55 - return -1; 55 + return 0; 56 56 } 57 57 58 58 int sandbox_init_with_extensions(const char *profile, uint64_t flags, const char *const extensions[], char **errorbuf) 59 59 { 60 60 *errorbuf = strdup("Not implemented"); 61 - return -1; 61 + return 0; 62 62 } 63 63 64 64 int sandbox_check(pid_t pid, const char *operation, enum sandbox_filter_type type, ...) 65 65 { 66 - return -1; 66 + return 0; 67 67 } 68 68 69 69 int sandbox_note(const char *note)