Re: apr_file_open: APR_CREATE without APR_WRITE?

2004-08-04 Thread Brian Havard
On Sun, 01 Aug 2004 10:38:13 -0700, Justin Erenkrantz wrote: >--On Saturday, July 31, 2004 11:55 AM +1000 Brian Havard ><[EMAIL PROTECTED]> wrote: > >> While porting Subversion to OS/2 I came across a failure where it tries to >> open a file using only APR_READ | APR_CREATE. This results in an er

Re: apr_file_open: APR_CREATE without APR_WRITE?

2004-08-01 Thread Justin Erenkrantz
--On Saturday, July 31, 2004 11:55 AM +1000 Brian Havard <[EMAIL PROTECTED]> wrote: While porting Subversion to OS/2 I came across a failure where it tries to open a file using only APR_READ | APR_CREATE. This results in an error on OS/2, it doesn't seem to like the idea of creating a new file wi

apr_file_open: APR_CREATE without APR_WRITE?

2004-07-31 Thread Brian Havard
While porting Subversion to OS/2 I came across a failure where it tries to open a file using only APR_READ | APR_CREATE. This results in an error on OS/2, it doesn't seem to like the idea of creating a new file with read-only access. Is this supposed to work or is it just lucky that happens to wo