|
Message-Id: <20190313140915.35860-1-AWilcox@Wilcox-Tech.com> Date: Wed, 13 Mar 2019 09:09:15 -0500 From: "A. Wilcox" <AWilcox@...cox-Tech.com> To: musl@...ts.openwall.com Cc: "A. Wilcox" <AWilcox@...cox-Tech.com> Subject: [PATCH] tar.h: TSVTX should always be visible The TSVTX definition was incorrectly shaded in the POSIX standard's HTML pages as being an XSI option. While the definition of what TSVTX *does* is an XSI option, the definition must always be present. See https://jserver.opengroup.org/pr/public/posix/PRView?PR=0066 for the POSIX defect report. --- include/tar.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/tar.h b/include/tar.h index 2eba66ec..d15bd9b4 100644 --- a/include/tar.h +++ b/include/tar.h @@ -5,9 +5,7 @@ #define TSUID 04000 #define TSGID 02000 -#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_XOPEN_SOURCE) #define TSVTX 01000 -#endif #define TUREAD 00400 #define TUWRITE 00200 #define TUEXEC 00100 -- 2.19.2
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.