Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 26336 invoked from network); 25 Jun 2004 15:29:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 25 Jun 2004 15:29:11 -0000 Received: (qmail 52785 invoked by uid 500); 25 Jun 2004 15:28:54 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 52627 invoked by uid 500); 25 Jun 2004 15:28:53 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 52569 invoked by uid 99); 25 Jun 2004 15:28:52 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Date: 25 Jun 2004 15:28:42 -0000 Message-ID: <20040625152842.26030.qmail@minotaur.apache.org> From: jorton@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_file_info.h X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/06/25 08:28:42 Modified: include apr_file_info.h Log: * 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 Revision Changes Path 1.47 +3 -3 apr/include/apr_file_info.h Index: apr_file_info.h =================================================================== RCS file: /home/cvs/apr/include/apr_file_info.h,v retrieving revision 1.46 retrieving revision 1.47 diff -d -w -u -r1.46 -r1.47 --- apr_file_info.h 17 May 2004 20:14:49 -0000 1.46 +++ apr_file_info.h 25 Jun 2004 15:28:42 -0000 1.47 @@ -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 */