aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/im-sandbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/im-sandbox.c b/src/im-sandbox.c
index 91479414..3dedf3f3 100644
--- a/src/im-sandbox.c
+++ b/src/im-sandbox.c
@@ -623,7 +623,7 @@ static void start_worker_process(struct sandbox *sb, int slot)
exit(1);
}
- r = mkdir(tmp, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+ r = mkdir(tmp, S_IRWXU);
if ( r ) {
ERROR("Failed to create temporary folder: %s\n",
strerror(errno));
@@ -935,7 +935,7 @@ void create_sandbox(struct index_args *iargs, int n_proc, char *prefix,
return;
}
- r = mkdir(sb->tmpdir, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+ r = mkdir(sb->tmpdir, S_IRWXU);
if ( r ) {
ERROR("Failed to create temporary folder: %s\n",
strerror(errno));