aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/fs.h
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /util/system/fs.h
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
downloadydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/fs.h')
-rw-r--r--util/system/fs.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/util/system/fs.h b/util/system/fs.h
index 237daf2d2d..344adccc4c 100644
--- a/util/system/fs.h
+++ b/util/system/fs.h
@@ -6,18 +6,18 @@
namespace NFs {
enum EFilePermission {
- FP_ALL_EXEC = 01,
- FP_ALL_WRITE = 02,
- FP_ALL_READ = 04,
- FP_GROUP_READ = 040,
- FP_GROUP_WRITE = 020,
- FP_GROUP_EXEC = 010,
- FP_OWNER_READ = 0400,
- FP_OWNER_WRITE = 0200,
- FP_OWNER_EXEC = 0100,
-
- FP_COMMON_FILE = 0777,
- FP_SECRET_FILE = 0700,
+ FP_ALL_EXEC = 01,
+ FP_ALL_WRITE = 02,
+ FP_ALL_READ = 04,
+ FP_GROUP_READ = 040,
+ FP_GROUP_WRITE = 020,
+ FP_GROUP_EXEC = 010,
+ FP_OWNER_READ = 0400,
+ FP_OWNER_WRITE = 0200,
+ FP_OWNER_EXEC = 0100,
+
+ FP_COMMON_FILE = 0777,
+ FP_SECRET_FILE = 0700,
FP_NONSECRET_FILE = 0744,
};
@@ -148,7 +148,7 @@ namespace NFs {
/// @param[in] path Path to check
/// @returns input argument
inline const TString& EnsureExists(const TString& path) {
- Y_ENSURE_EX(Exists(path), TFileError{} << "Path " << path << " does not exists (checked from cwd:" << NFs::CurrentWorkingDirectory() << ")");
+ Y_ENSURE_EX(Exists(path), TFileError{} << "Path " << path << " does not exists (checked from cwd:" << NFs::CurrentWorkingDirectory() << ")");
return path;
}
}