From fd524ff9301c520e7d8f51368e7c2930add1ce03 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= Date: Fri, 20 Aug 2004 18:34:41 +0000 Subject: [PATCH] - fix modes used by apr Changed files: apr-modes.patch -> 1.1 --- apr-modes.patch | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 apr-modes.patch diff --git a/apr-modes.patch b/apr-modes.patch new file mode 100644 index 0000000..5d4fbc2 --- /dev/null +++ b/apr-modes.patch @@ -0,0 +1,28 @@ +=================================================================== +RCS file: /home/cvspublic/apr/include/apr_file_info.h,v +retrieving revision 1.40.2.5 +retrieving revision 1.40.2.6 +diff -u -r1.40.2.5 -r1.40.2.6 +--- apr/include/apr_file_info.h 2004/05/05 02:57:41 1.40.2.5 ++++ apr/include/apr_file_info.h 2004/06/25 15:31:49 1.40.2.6 +@@ -75,17 +75,17 @@ + * @{ + */ + +-#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 */ -- 2.44.0