summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-06-25 15:28:42 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-06-25 15:28:42 +0000
commiteba9fb1ce9a40c8ffbd2624c44961922abd23abe (patch)
tree70ee0b3ce75bf778e8de213906ac1bbbfefc4531 /include
parentb893911f1c6712fcb32c34b35acc4a12922dea0e (diff)
downloadlibapr-eba9fb1ce9a40c8ffbd2624c44961922abd23abe.tar.gz
* include/apr_file_info.h: Move new APR_USETID, APR_GSETID and
APR_WSTICKY constants outside 0xFFF so they are not implied by APR_OS_DEFAULT. Submitted by: Greg Hudson <ghudson MIT.EDU> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65219 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_file_info.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 74e0592bc..46db6c25b 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -75,17 +75,17 @@ typedef enum {
* @{
*/
-#define APR_USETID 0x0800 /**< Set user id */
+#define APR_USETID 0x8000 /**< Set user id */
#define APR_UREAD 0x0400 /**< Read by user */
#define APR_UWRITE 0x0200 /**< Write by user */
#define APR_UEXECUTE 0x0100 /**< Execute by user */
-#define APR_GSETID 0x0080 /**< Set group id */
+#define APR_GSETID 0x4000 /**< Set group id */
#define APR_GREAD 0x0040 /**< Read by group */
#define APR_GWRITE 0x0020 /**< Write by group */
#define APR_GEXECUTE 0x0010 /**< Execute by group */
-#define APR_WSTICKY 0x0008 /**< Sticky bit */
+#define APR_WSTICKY 0x2000 /**< Sticky bit */
#define APR_WREAD 0x0004 /**< Read by others */
#define APR_WWRITE 0x0002 /**< Write by others */
#define APR_WEXECUTE 0x0001 /**< Execute by others */