summaryrefslogtreecommitdiffstats
path: root/src/report-python/dump_dir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/report-python/dump_dir.c')
-rw-r--r--src/report-python/dump_dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/report-python/dump_dir.c b/src/report-python/dump_dir.c
index 96a96fba..c34cc869 100644
--- a/src/report-python/dump_dir.c
+++ b/src/report-python/dump_dir.c
@@ -249,7 +249,7 @@ PyObject *p_dd_create(PyObject *module, PyObject *args)
p_dump_dir *new_dd = PyObject_New(p_dump_dir, &p_dump_dir_type);
if (!new_dd)
return NULL;
- new_dd->dd = dd_create(dir, uid);
+ new_dd->dd = dd_create(dir, uid, 0640);
return (PyObject*)new_dd;
}