From d021221086c9a6c5af404f3017791605b70c592d Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 29 Dec 2010 17:02:43 +0100 Subject: [PATCH] version set to 2.3.0 --- src/diskstore.c | 2 +- src/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/diskstore.c b/src/diskstore.c index 3904310d..abaecb6b 100644 --- a/src/diskstore.c +++ b/src/diskstore.c @@ -97,7 +97,7 @@ int dsOpen(void) { /* New disk store, create the directory structure now, as creating * them in a lazy way is not a good idea, after very few insertions * we'll need most of the 65536 directories anyway. */ - if (mkdir(path) == -1) { + if (mkdir(path,0644) == -1) { redisLog(REDIS_WARNING,"Disk store init failed creating dir %s: %s", path, strerror(errno)); return REDIS_ERR; diff --git a/src/version.h b/src/version.h index ff8473e7..3913b007 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.1.8" +#define REDIS_VERSION "2.3.0" -- 2.47.2