From 1319002e2ee166c06b38cdbc5e8508c7205fa115 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 11 Dec 2010 13:11:18 -0500 Subject: [PATCH] Provide a complete set of file-permission-bit macros in win32.h. My previous patch exposed the fact that we didn't have these. Those hard-wired octal constants were actually wrong on Windows, not just inconsistent. --- src/include/port/win32.h | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/include/port/win32.h b/src/include/port/win32.h index 9c2ae4d60c..64fa2e176b 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -326,13 +326,18 @@ typedef unsigned short mode_t; #endif #ifndef __BORLANDC__ -#define _S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC) -#define _S_IXUSR _S_IEXEC -#define _S_IWUSR _S_IWRITE -#define _S_IRUSR _S_IREAD -#define S_IRUSR _S_IRUSR -#define S_IWUSR _S_IWUSR -#define S_IXUSR _S_IXUSR +#define S_IRUSR _S_IREAD +#define S_IWUSR _S_IWRITE +#define S_IXUSR _S_IEXEC +#define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR) +#define S_IRGRP 0 +#define S_IWGRP 0 +#define S_IXGRP 0 +#define S_IRWXG 0 +#define S_IROTH 0 +#define S_IWOTH 0 +#define S_IXOTH 0 +#define S_IRWXO 0 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) #endif -- 2.40.0