Commit 21475a8da22ea3d9aea329ed67c56c3588731c3b

Authored by Georg Hopp
1 parent 020c62e4

create database files world read-/writable

Showing 1 changed file with 1 additions and 1 deletions
@@ -43,7 +43,7 @@ storageCtor(void * _this, va_list * params) @@ -43,7 +43,7 @@ storageCtor(void * _this, va_list * params)
43 this->db_name, 43 this->db_name,
44 0, 44 0,
45 GDBM_WRCREAT, 45 GDBM_WRCREAT,
46 - S_IRUSR | S_IWUSR, 46 + S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH,
47 NULL); 47 NULL);
48 48
49 if (NULL == this->gdbm) { 49 if (NULL == this->gdbm) {
Please register or login to post a comment