Author: brane
Date: Fri May 16 20:51:51 2025
New Revision: 1925595
URL: http://svn.apache.org/viewvc?rev=1925595&view=rev
Log:
Fixed docstrings in svn_io.h.
* svn_io.h
(svn_stream_open_readonly, svn_stream_open_writable): Do not mention
APR_BUFFERED in the docstrings because the implementation does not
actually use that flag.
Modified:
subversion/trunk/subversion/include/svn_io.h
Modified: subversion/trunk/subversion/include/svn_io.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_io.h?rev=1925595&r1=1925594&r2=1925595&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_io.h (original)
+++ subversion/trunk/subversion/include/svn_io.h Fri May 16 20:51:51 2025
@@ -1027,10 +1027,10 @@ svn_stream_disown(svn_stream_t *stream,
apr_pool_t *pool);
-/** Create a stream to read the file at @a path. It will be opened using
- * the APR_BUFFERED and APR_BINARY flag, and APR_OS_DEFAULT for the perms.
- * If you'd like to use different values, then open the file yourself, and
- * use the svn_stream_from_aprfile2() interface.
+/** Create a stream to read the file at @a path. It will be opened using the
+ * APR_BUFFERED flag, and APR_OS_DEFAULT for the perms. If you'd like to use
+ * different values, then open the file yourself, and use the
+ * svn_stream_from_aprfile2() interface.
*
* The stream will be returned in @a stream, and allocated from @a result_pool.
* Temporary allocations will be performed in @a scratch_pool.
@@ -1045,11 +1045,11 @@ svn_stream_open_readonly(svn_stream_t **
/** Create a stream to write a file at @a path. The file will be *created*
- * using the APR_BUFFERED and APR_BINARY flag, and APR_OS_DEFAULT for the
- * perms. The file will be created "exclusively", so if it already exists,
- * then an error will be thrown. If you'd like to use different values, or
- * open an existing file, then open the file yourself, and use the
- * svn_stream_from_aprfile2() interface.
+ * using the APR_BUFFERED flag, and APR_OS_DEFAULT for the perms. The file
+ * will be created "exclusively", so if it already exists, then an error will
+ * be thrown. If you'd like to use different values, or open an existing file,
+ * then open the file yourself, and use the svn_stream_from_aprfile2()
+ * interface.
*
* The stream will be returned in @a stream, and allocated from @a result_pool.
* Temporary allocations will be performed in @a scratch_pool.