diff --git a/installer/sandbox.c b/installer/sandbox.c index 3b89fe1f2..67b245432 100644 --- a/installer/sandbox.c +++ b/installer/sandbox.c @@ -204,12 +204,12 @@ static int allow_create_subprocess() { } static int deny() { fprintf(stderr, "Permission denied to create subprocess.\n"); - _exit(1); + _exit(126); return -1; } static int not_supported(const char *function_name) { fprintf(stderr, "Not supported function: %s\n", function_name); - _exit(1); + _exit(126); return -1; } #define RESOLVE_REAL(func) \