[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

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

From: Peter Lundblad <peter_at_famlundblad.se>
Date: 2006-02-27 15:39:21 CET

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
Received on Mon Feb 27 16:30:45 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.