You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2012/07/02 21:04:49 UTC

svn commit: r1356416 - /subversion/trunk/subversion/tests/libsvn_subr/io-test.c

Author: philip
Date: Mon Jul  2 19:04:48 2012
New Revision: 1356416

URL: http://svn.apache.org/viewvc?rev=1356416&view=rev
Log:
* subversion/tests/libsvn_subr/io-test.c
  (create_test_file): Use constants that are APR 0.9 compatible.

Modified:
    subversion/trunk/subversion/tests/libsvn_subr/io-test.c

Modified: subversion/trunk/subversion/tests/libsvn_subr/io-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/io-test.c?rev=1356416&r1=1356415&r2=1356416&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/io-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/io-test.c Mon Jul  2 19:04:48 2012
@@ -140,8 +140,7 @@ create_test_file(struct test_file_defini
   
   SVN_ERR(svn_io_file_open(&file_h, 
                            definition->created_path,
-                           (APR_FOPEN_WRITE | APR_FOPEN_CREATE
-                            | APR_FOPEN_EXCL | APR_FOPEN_BUFFERED),
+                           (APR_WRITE | APR_CREATE | APR_EXCL | APR_BUFFERED),
                            APR_OS_DEFAULT,
                            scratch_pool));