You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Peter Lundblad <pe...@famlundblad.se> on 2006/02/27 14:39:21 UTC

Re: svn commit: r18628 - in trunk/subversion: include libsvn_subr libsvn_wc

zhakov@tigris.org writes:
[...]
 > --- trunk/subversion/include/svn_io.h	(original)
 > +++ trunk/subversion/include/svn_io.h	Mon Feb 27 07:42:58 2006
 > @@ -422,8 +422,8 @@
 >                                    apr_pool_t *pool);
 >  
 >  
 > -/** Set @a *same to non-zero if @a file1 and @a file2 have the same
 > - * contents, else set it to zero.  Use @a pool for temporary allocations.
 > +/** Set @a *same to TRUE if @a file1 and @a file2 have the same
 > + * contents, else set it to FALSE.  Use @a pool for temporary allocations.
 >   */
 >  svn_error_t *svn_io_files_contents_same_p(svn_boolean_t *same,
 >                                            const char *file1,
 > @@ -688,6 +688,17 @@
 >   */
 >  svn_error_t *svn_stream_copy(svn_stream_t *from, svn_stream_t *to,
 >                               apr_pool_t *pool);
 > +
 > +/** Set @a *same to non-zero if @a stream1 and @a stream2 have the same
 > + * contents, else set it to zero.  Use @a pool for temporary allocations.
 > + *
 > + * @since New in 1.4.
 > + */
 > +svn_error_t *
 > +svn_stream_contents_same(svn_boolean_t *same,
 > +                         svn_stream_t *stream1,
 > +                         svn_stream_t *stream2,
 > +                         apr_pool_t *pool);

Ooops! You seem to have fixed the wrong docstring:-)

Thanks,
//Peter

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org