]> git.pld-linux.org Git - packages/apr-compat.git/blob - apr-modes.patch
- rel 8; fix modes used by apr
[packages/apr-compat.git] / apr-modes.patch
1 ===================================================================
2 RCS file: /home/cvspublic/apr/include/apr_file_info.h,v
3 retrieving revision 1.40.2.5
4 retrieving revision 1.40.2.6
5 diff -u -r1.40.2.5 -r1.40.2.6
6 --- apr/include/apr_file_info.h 2004/05/05 02:57:41     1.40.2.5
7 +++ apr/include/apr_file_info.h 2004/06/25 15:31:49     1.40.2.6
8 @@ -75,17 +75,17 @@
9   * @{
10   */
11  
12 -#define APR_USETID      0x0800 /**< Set user id */
13 +#define APR_USETID      0x8000 /**< Set user id */
14  #define APR_UREAD       0x0400 /**< Read by user */
15  #define APR_UWRITE      0x0200 /**< Write by user */
16  #define APR_UEXECUTE    0x0100 /**< Execute by user */
17  
18 -#define APR_GSETID      0x0080 /**< Set group id */
19 +#define APR_GSETID      0x4000 /**< Set group id */
20  #define APR_GREAD       0x0040 /**< Read by group */
21  #define APR_GWRITE      0x0020 /**< Write by group */
22  #define APR_GEXECUTE    0x0010 /**< Execute by group */
23  
24 -#define APR_WSTICKY     0x0008 /**< Sticky bit */
25 +#define APR_WSTICKY     0x2000 /**< Sticky bit */
26  #define APR_WREAD       0x0004 /**< Read by others */
27  #define APR_WWRITE      0x0002 /**< Write by others */
28  #define APR_WEXECUTE    0x0001 /**< Execute by others */
This page took 0.165297 seconds and 3 git commands to generate.