Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 77978 invoked by uid 500); 4 Jul 2003 03:00:33 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 77965 invoked from network); 4 Jul 2003 03:00:32 -0000 Date: Thu, 3 Jul 2003 22:59:33 -0400 (EDT) From: Cliff Woolley X-X-Sender: root@deepthought.cs.virginia.edu To: =?UTF-8?B?QnJhbmtvIMSMaWJlag==?= cc: dev Subject: Re: setting timestamps In-Reply-To: <3F04E0F1.1040401@xbc.nu> Message-ID: References: <3F03D0C9.8000600@xbc.nu> <3F04E0F1.1040401@xbc.nu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=utf-8 Content-Transfer-Encoding: 8BIT X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Fri, 4 Jul 2003, [UTF-8] Branko �^Libej wrote: > /* Internal Flags for apr_file_open */ > -#define APR_OPENINFO 0x4000 /* Open without READ or WRITE access */ > -#define APR_OPENLINK 0x2000 /* Open a link itself, if supported */ > -#define APR_READCONTROL 0x1000 /* Read the file's owner/perms */ > -#define APR_WRITECONTROL 0x0800 /* Modifythe file's owner/perms */ > +#define APR_OPENINFO 0x00100000 /* Open without READ or WRITE access */ > +#define APR_OPENLINK 0x00200000 /* Open a link itself, if supported */ > +#define APR_READCONTROL 0x00400000 /* Read the file's owner/perms */ > +#define APR_WRITECONTROL 0x00800000 /* Modifythe file's owner/perms */ > +#define APR_WRITEATTRS 0x01000000 /* Modify the file's attributes */ I should point out that this would break binary compatibility... --Cliff