Browse Source

create database files world read-/writable

v0.1.8
Georg Hopp 12 years ago
parent
commit
21475a8da2
  1. 2
      src/storage/storage.c

2
src/storage/storage.c

@ -43,7 +43,7 @@ storageCtor(void * _this, va_list * params)
this->db_name,
0,
GDBM_WRCREAT,
S_IRUSR | S_IWUSR,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH,
NULL);
if (NULL == this->gdbm) {

Loading…
Cancel
Save