Support/Unix/PathV2: Use 0770 instead of 0700 when creating a directory. Also use

the standard macros instead of octal notation.

llvm-svn: 121093
This commit is contained in:
Michael J. Spencer 2010-12-07 01:23:29 +00:00
parent 98c7a114de
commit e5755beb47
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ error_code create_directory(const Twine &path, bool &existed) {
SmallString<128> path_storage;
StringRef p = path.toNullTerminatedStringRef(path_storage);
if (::mkdir(p.begin(), 0700) == -1) {
if (::mkdir(p.begin(), S_IRWXU | S_IRWXG) == -1) {
if (errno != errc::file_exists)
return error_code(errno, system_category());
existed = true;