summaryrefslogtreecommitdiff
path: root/services/incremental/IncrementalService.h
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-02-04 07:19:54 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-02-04 07:19:54 +0000
commit1a79ff69dec8457d82a93b1e9804a16214d0ae6b (patch)
tree1cb1f2d2c27475fad898945ff9535fba2fc8c1cc /services/incremental/IncrementalService.h
parentb0ed5ee3646a1b49e303e8b47a9229a8932feb94 (diff)
parent9610093a7b3d70ce60a82331c650e7a12b26bbc9 (diff)
Merge "fix dir creation mode"
Diffstat (limited to 'services/incremental/IncrementalService.h')
-rw-r--r--services/incremental/IncrementalService.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/incremental/IncrementalService.h b/services/incremental/IncrementalService.h
index 0dc27782e15d..dec9f64f2084 100644
--- a/services/incremental/IncrementalService.h
+++ b/services/incremental/IncrementalService.h
@@ -110,8 +110,8 @@ public:
int makeFile(StorageId storage, std::string_view path, int mode, FileId id,
incfs::NewFileParams params);
- int makeDir(StorageId storage, std::string_view path, int mode = 0555);
- int makeDirs(StorageId storage, std::string_view path, int mode = 0555);
+ int makeDir(StorageId storage, std::string_view path, int mode = 0755);
+ int makeDirs(StorageId storage, std::string_view path, int mode = 0755);
int link(StorageId sourceStorageId, std::string_view oldPath, StorageId destStorageId,
std::string_view newPath);