From 21475a8da22ea3d9aea329ed67c56c3588731c3b Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Sun, 24 Nov 2013 12:18:37 +0000 Subject: [PATCH] create database files world read-/writable --- src/storage/storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/storage.c b/src/storage/storage.c index 9e8df6a..be71ef9 100644 --- a/src/storage/storage.c +++ b/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) {