From 826df7bec84aa65a9838402e3f5fb19dcbc8615d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 3 Aug 2008 12:51:40 +0000 Subject: [PATCH] =?UTF-8?q?*=20Patch=20by=20Andreas=20F=C3=A4rber:=20remov?= =?UTF-8?q?e=20undefined=20S=5FISTXT=20from=20ALLPERMS.=20*=20This=20fixes?= =?UTF-8?q?=20bug=20#2560.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26754 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/sys/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/posix/sys/stat.h b/headers/posix/sys/stat.h index a3110e1e06..7451813771 100644 --- a/headers/posix/sys/stat.h +++ b/headers/posix/sys/stat.h @@ -93,7 +93,7 @@ struct stat { #define S_IEXEC S_IXUSR #define ACCESSPERMS (S_IRWXU | S_IRWXG | S_IRWXO) -#define ALLPERMS (S_ISUID | S_ISGID | S_ISTXT | S_IRWXU | S_IRWXG | S_IRWXO) +#define ALLPERMS (S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO) #define DEFFILEMODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) /* default file mode, everyone can read/write */