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/07 23:54:37 UTC

Re: svn commit: r39677 - trunk/subversion/libsvn_client

On Tue, Sep 29, 2009 at 12:18, Hyrum K. Wright <hy...@hyrumwright.org> wrote:
>...
> +++ trunk/subversion/libsvn_client/externals.c  Tue Sep 29 09:18:26 2009        (r39677)
>...
>       else
>         {
>           close_access_baton_when_done = TRUE;
> -          what_to_remove = SVN_WC_ENTRY_THIS_DIR;
> +          SVN_ERR(svn_dirent_get_absolute(&remove_target_abspath,
> +                                          svn_wc_adm_access_path(adm_access),
> +                                          ib->iter_pool));
>         }

This is more simply:

  remove_target_abspath = svn_wc__adm_access_abspath(adm_access);

>...

Cheers,
-g

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