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

Re: CVS update: subversion/subversion/libsvn_wc log.c

From: Greg Stein <gstein_at_lyra.org>
Date: 2000-11-08 08:40:28 CET

On Wed, Nov 08, 2000 at 05:59:28AM -0000, sussman@tigris.org wrote:
> User: sussman
> Date: 00/11/07 21:59:28
>
> Modified: subversion/libsvn_wc log.c
> Log:
> (start_handler): call apr_remove_file with correct full path.
>...
> @@ -340,7 +341,10 @@
> return;
> }
>
> - status = apr_remove_file (name, loggy->pool);
> + svn_path_add_component(full_path,
> + svn_string_create (name, loggy->pool),
> + svn_path_local_style);
> + status = apr_remove_file (full_path->data, loggy->pool);

This could be simplified by using svn_path_add_component_nts()

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/
Received on Sat Oct 21 14:36:14 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.