You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2009/10/23 17:47:52 UTC

Re: svn commit: r40202 - trunk/subversion/libsvn_ra_neon

On Fri, Oct 23, 2009 at 11:59, Julian Foad <ju...@btopenworld.com> wrote:
>...
> +++ trunk/subversion/libsvn_ra_neon/commit.c    Fri Oct 23 08:59:03 2009        (r40202)
>...
> @@ -373,8 +373,8 @@ static svn_error_t * add_child(version_r
>   rsrc->pool = pool;
>   rsrc->revision = revision;
>   rsrc->name = name;
> -  rsrc->url = svn_path_url_add_component(parent->url, name, pool);
> -  rsrc->local_path = svn_path_join(parent->local_path, name, pool);
> +  rsrc->url = svn_path_url_add_component2(parent->url, name, pool);
> +  rsrc->local_path = svn_uri_join(parent->local_path, name, pool);

That should be svn_relpath_join()

>...

Cheers,
-g

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2410715

Re: svn commit: r40202 - trunk/subversion/libsvn_ra_neon

Posted by Julian Foad <ju...@btopenworld.com>.
Greg Stein wrote:
> On Fri, Oct 23, 2009 at 11:59, Julian Foad <ju...@btopenworld.com> wrote:
> >...
> > +++ trunk/subversion/libsvn_ra_neon/commit.c    Fri Oct 23 08:59:03 2009        (r40202)
> >...
> > @@ -373,8 +373,8 @@ static svn_error_t * add_child(version_r
> >   rsrc->pool = pool;
> >   rsrc->revision = revision;
> >   rsrc->name = name;
> > -  rsrc->url = svn_path_url_add_component(parent->url, name, pool);
> > -  rsrc->local_path = svn_path_join(parent->local_path, name, pool);
> > +  rsrc->url = svn_path_url_add_component2(parent->url, name, pool);
> > +  rsrc->local_path = svn_uri_join(parent->local_path, name, pool);
> 
> That should be svn_relpath_join()

Thanks. r40208.

- Julian

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2410788