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

Re: svn commit: r17746 - in trunk/subversion: libsvn_subr

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2005-12-12 22:40:41 CET

dionisos@tigris.org writes:

> Author: dionisos
> Date: Mon Dec 12 15:45:20 2005
> New Revision: 17746

> +static svn_error_t *
> +read_handler_md5 (void *baton, char *buffer, apr_size_t *len)
> +{
> + struct md5_stream_baton *btn = baton;
> +
> + SVN_ERR (svn_stream_read (btn->proxy, buffer, len));
> +
> + if (btn->read_digest)
> + {
> + apr_status_t apr_err = apr_md5_update (&btn->read_ctx, buffer, *len);
> +
> + if (! APR_STATUS_IS_SUCCESS(apr_err))
> + return svn_error_create (apr_err, NULL, NULL);

APR_STATUS_IS_SUCCESS has been removed from apr 1.2.

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Dec 12 22:42:38 2005

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.