From 77586e678c250be74e0952295843293c035b1d04 Mon Sep 17 00:00:00 2001 From: Sacha Date: Thu, 16 May 2013 23:11:58 +1000 Subject: [PATCH] Correct permissions on Blackberry. The settings I originally tested it with and found to be working. Sorry for changing it. --- Common/FileUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/FileUtil.cpp b/Common/FileUtil.cpp index 1738571175..1c21fc4e36 100644 --- a/Common/FileUtil.cpp +++ b/Common/FileUtil.cpp @@ -178,7 +178,7 @@ bool CreateDir(const std::string &path) return false; #else #ifdef BLACKBERRY - if (mkdir(path.c_str(), 0765) == 0) + if (mkdir(path.c_str(), 0775) == 0) #else if (mkdir(path.c_str(), 0755) == 0) #endif